* password_to_key.c (mit_passwd_to_key, afs_passwd_to_key): Delete
authorTom Yu <tlyu@mit.edu>
Thu, 5 Jun 2003 00:20:28 +0000 (00:20 +0000)
committerTom Yu <tlyu@mit.edu>
Thu, 5 Jun 2003 00:20:28 +0000 (00:20 +0000)
spurious space from prompt.

ticket: 1560

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15569 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb4/ChangeLog
src/lib/krb4/password_to_key.c

index d177d1f2146a2ffd39f1a37fab21aee1f9869638..2e6e0141c711fb79eb7d6bb27a67dac6bc004568 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-04  Tom Yu  <tlyu@mit.edu>
+
+       * password_to_key.c (mit_passwd_to_key, afs_passwd_to_key): Delete
+       spurious space from prompt.
+
 2003-06-03  Ken Raeburn  <raeburn@mit.edu>
 
        * RealmsConfig-glue.c (get_krbhst_default): Deleted.
index 21b91ad322c808a7ad69a57579663f5511d1bbef..c6e60d98cdafc296015a53cca112a11252819b0e 100644 (file)
@@ -90,7 +90,7 @@ mit_passwd_to_key(
         des_string_to_key(passwd, key);
     } else {
 #if !(defined(_WIN32) || defined(USE_LOGIN_LIBRARY))
-        des_read_password((des_cblock *)key, "Password ", 0);
+        des_read_password((des_cblock *)key, "Password", 0);
 #else
         return (-1);
 #endif
@@ -143,7 +143,7 @@ afs_passwd_to_key(
         afs_string_to_key(passwd, realm, key);
     } else {
 #if !(defined(_WIN32) || defined(USE_LOGIN_LIBRARY))
-        des_read_password((des_cblock *)key, "Password ", 0);
+        des_read_password((des_cblock *)key, "Password", 0);
 #else
         return (-1);
 #endif