From d5227abb818ebc30e58b88d3b45bccc5f054a1a3 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Thu, 6 May 1999 10:14:40 +0000 Subject: [PATCH] (change_password): add colon to prompt strings git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6146 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/init_creds_pw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/krb5/init_creds_pw.c b/lib/krb5/init_creds_pw.c index 30b4a7e6e..7b027897e 100644 --- a/lib/krb5/init_creds_pw.c +++ b/lib/krb5/init_creds_pw.c @@ -320,7 +320,7 @@ change_password (krb5_context context, password_data.length = sizeof(buf1); prompt.hidden = 1; - prompt.prompt = "New password"; + prompt.prompt = "New password: "; prompt.reply = &password_data; ret = (*prompter) (context, data, "Changing password", 1, &prompt); @@ -331,7 +331,7 @@ change_password (krb5_context context, password_data.length = sizeof(buf2); prompt.hidden = 1; - prompt.prompt = "Repeat new password"; + prompt.prompt = "Repeat new password: "; prompt.reply = &password_data; ret = (*prompter) (context, data, "Changing password", 1, &prompt);