From: Tom Yu Date: Thu, 5 Jun 2003 00:20:28 +0000 (+0000) Subject: * password_to_key.c (mit_passwd_to_key, afs_passwd_to_key): Delete X-Git-Tag: krb5-1.4-beta1~874 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2909d25e6ba3c3d44bbecd66424cf1cc627b1e04;p=krb5.git * password_to_key.c (mit_passwd_to_key, afs_passwd_to_key): Delete spurious space from prompt. ticket: 1560 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15569 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb4/ChangeLog b/src/lib/krb4/ChangeLog index d177d1f21..2e6e0141c 100644 --- a/src/lib/krb4/ChangeLog +++ b/src/lib/krb4/ChangeLog @@ -1,3 +1,8 @@ +2003-06-04 Tom Yu + + * password_to_key.c (mit_passwd_to_key, afs_passwd_to_key): Delete + spurious space from prompt. + 2003-06-03 Ken Raeburn * RealmsConfig-glue.c (get_krbhst_default): Deleted. diff --git a/src/lib/krb4/password_to_key.c b/src/lib/krb4/password_to_key.c index 21b91ad32..c6e60d98c 100644 --- a/src/lib/krb4/password_to_key.c +++ b/src/lib/krb4/password_to_key.c @@ -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