diff options
| author | Tom Yu <tlyu@mit.edu> | 2002-11-06 00:42:57 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2002-11-06 00:42:57 +0000 |
| commit | c1599f83f727ef71249e2fbfd3cc0f0cd430df26 (patch) | |
| tree | 30802757ae833537861283ee6bf65da3d21f901c /src/clients | |
| parent | 8d702bfe4bccba2b07d599ae2ecdd4225fa8a895 (diff) | |
| download | krb5-c1599f83f727ef71249e2fbfd3cc0f0cd430df26.tar.gz krb5-c1599f83f727ef71249e2fbfd3cc0f0cd430df26.tar.xz krb5-c1599f83f727ef71249e2fbfd3cc0f0cd430df26.zip | |
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/clients')
| -rw-r--r-- | src/clients/kinit/ChangeLog | 5 | ||||
| -rw-r--r-- | src/clients/kinit/kinit.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/clients/kinit/ChangeLog b/src/clients/kinit/ChangeLog index 53a2c15dbe..802ab3e014 100644 --- a/src/clients/kinit/ChangeLog +++ b/src/clients/kinit/ChangeLog @@ -1,3 +1,8 @@ +2002-11-05 Tom Yu <tlyu@mit.edu> + + * kinit.c (k4_kinit): Remove trailing colon, as new implementation + of krb5_read_password() appends it. + 2002-08-29 Ken Raeburn <raeburn@mit.edu> * Makefile.in: Revert $(S)=>/ change, for Windows support. diff --git a/src/clients/kinit/kinit.c b/src/clients/kinit/kinit.c index 824d20c5b4..740b0302ac 100644 --- a/src/clients/kinit/kinit.c +++ b/src/clients/kinit/kinit.c @@ -907,7 +907,7 @@ k4_kinit(opts, k4, ctx) krb5_error_code code; char prompt[1024]; - sprintf(prompt, "Password for %s: ", opts->principal_name); + sprintf(prompt, "Password for %s", opts->principal_name); stash_password[0] = 0; /* Note: krb5_read_password does not actually look at the |
