You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2004/11/01 21:50:40 UTC

svn commit: rev 56279 - geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/jaas

Author: ammulder
Date: Mon Nov  1 12:50:39 2004
New Revision: 56279

Modified:
   geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/jaas/RemoteLoginModule.java
Log:
Typo


Modified: geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/jaas/RemoteLoginModule.java
==============================================================================
--- geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/jaas/RemoteLoginModule.java	(original)
+++ geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/jaas/RemoteLoginModule.java	Mon Nov  1 12:50:39 2004
@@ -61,7 +61,7 @@
         String uri = (String) options.get("uri");
         String realm = (String) options.get("realm");
 
-        if (uri == null) throw new GeronimoSecurityException("Initialize error: uri to sercurity service is not set");
+        if (uri == null) throw new GeronimoSecurityException("Initialize error: uri to security service is not set");
         if (realm == null) throw new GeronimoSecurityException("Initialize error: realm name not specified");
 
         try {