Przeglądaj źródła

Mon Jul 9 13:04:37 CEST 2007 Paolo Molaro <[email protected]>

	* SmtpClient.cs: fixed Vladimir's refactoring that broke
	loading Mono.Security.


svn path=/trunk/mcs/; revision=81628
Paolo Molaro 18 lat temu
rodzic
commit
ad006452b4

+ 6 - 0
mcs/class/System.Web/System.Web.Mail/ChangeLog

@@ -1,3 +1,9 @@
+
+Mon Jul 9 13:04:37 CEST 2007 Paolo Molaro <[email protected]>
+
+	* SmtpClient.cs: fixed Vladimir's refactoring that broke
+	loading Mono.Security.
+
 2006-08-03 Gonzalo Paniagua Javier <[email protected]>
 
 	* MailAddress.cs: allow the space before '<' to be omitted.

+ 1 - 1
mcs/class/System.Web/System.Web.Mail/SmtpClient.cs

@@ -75,7 +75,7 @@ namespace System.Web.Mail {
 		// Load Mono.Security.dll
 		Assembly a;
 		try {
-			a = Assembly.Load("Consts.AssemblyMono_Security");
+			a = Assembly.Load(Consts.AssemblyMono_Security);
 		}
 		catch(System.IO.FileNotFoundException) {
 			throw new SmtpException( "Cannot load Mono.Security.dll" );