aboutsummaryrefslogtreecommitdiff
path: root/src/appl
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2002-11-06 00:42:57 +0000
committerTom Yu <tlyu@mit.edu>2002-11-06 00:42:57 +0000
commitc1599f83f727ef71249e2fbfd3cc0f0cd430df26 (patch)
tree30802757ae833537861283ee6bf65da3d21f901c /src/appl
parent8d702bfe4bccba2b07d599ae2ecdd4225fa8a895 (diff)
downloadkrb5-c1599f83f727ef71249e2fbfd3cc0f0cd430df26.zip
krb5-c1599f83f727ef71249e2fbfd3cc0f0cd430df26.tar.gz
krb5-c1599f83f727ef71249e2fbfd3cc0f0cd430df26.tar.bz2
This commit fixes up the in-tree callers of krb5_read_password() and
des_read_password(). We should perhaps tighten up the test suite now. ticket: 1217 status: open target_version: 1.3 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14972 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl')
-rw-r--r--src/appl/bsd/ChangeLog5
-rw-r--r--src/appl/bsd/login.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/appl/bsd/ChangeLog b/src/appl/bsd/ChangeLog
index 920c409..9dc2d1e 100644
--- a/src/appl/bsd/ChangeLog
+++ b/src/appl/bsd/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-05 Tom Yu <tlyu@mit.edu>
+
+ * login.c (k5_get_password): Remove trailing colon, as new
+ implementation of krb5_read_password() appends it.
+
2002-09-14 Ken Raeburn <raeburn@mit.edu>
* Makefile.in (rcp): Fix typo in 06-25 change.
diff --git a/src/appl/bsd/login.c b/src/appl/bsd/login.c
index d3a158c..f1ebff4 100644
--- a/src/appl/bsd/login.c
+++ b/src/appl/bsd/login.c
@@ -575,7 +575,7 @@ static int k5_get_password (user_pwstring, pwsize)
{
krb5_error_code code;
char prompt[255];
- sprintf(prompt,"Password for %s: ", username);
+ sprintf(prompt,"Password for %s", username);
/* reduce opportunities to be swapped out */
code = krb5_read_password(kcontext, prompt, 0, user_pwstring, &pwsize);