8037262: typo in error message in KrbAsReq.authenticate()
authorweijun
Fri, 14 Mar 2014 09:29:16 +0800
changeset 23346 c1437bb64131
parent 23345 534d74068ee0
child 23347 acb1d044a217
8037262: typo in error message in KrbAsReq.authenticate() Reviewed-by: mullan, juh
jdk/src/share/classes/sun/security/krb5/KrbApReq.java
--- a/jdk/src/share/classes/sun/security/krb5/KrbApReq.java	Thu Mar 13 15:13:22 2014 +0800
+++ b/jdk/src/share/classes/sun/security/krb5/KrbApReq.java	Fri Mar 14 09:29:16 2014 +0800
@@ -284,7 +284,7 @@
 
         if (dkey == null) {
             throw new KrbException(Krb5.API_INVALID_ARG,
-                "Cannot find key of appropriate type to decrypt AP REP - " +
+                "Cannot find key of appropriate type to decrypt AP-REQ - " +
                                    EType.toString(encPartKeyType));
         }
 
@@ -380,7 +380,7 @@
 
     /**
      * Returns the credentials that are contained in the ticket that
-     * is part of this this AP-REP.
+     * is part of this AP-REQ.
      */
     public Credentials getCreds() {
         return creds;