Code review request: 8001204: typo: Unable to obtain Princpal Name for authentication

Weijun Wang weijun.wang at oracle.com
Mon Oct 22 00:34:22 UTC 2012


A simple typo fix:

    http://cr.openjdk.java.net/~weijun/8001204/webrev.00/

It's just

--- a/src/share/classes/com/sun/security/auth/module/Krb5LoginModule.java
+++ b/src/share/classes/com/sun/security/auth/module/Krb5LoginModule.java
@@ -802,7 +802,7 @@

          if (doNotPrompt) {
              throw new LoginException
-                ("Unable to obtain Princpal Name for authentication ");
+                ("Unable to obtain Principal Name for authentication ");
          } else {
              if (callbackHandler == null)
                  throw new LoginException("No CallbackHandler "

I didn't remove the space at the end of string. The same trailing space 
appears multiple times in the same file and I don't want to change all 
those lines.

Thanks
Max



More information about the security-dev mailing list