Put in a missing colon in the "Enter passphrase" message.

This commit is contained in:
Brian Feldman 2001-06-29 16:34:14 +00:00
parent f664aeee49
commit 69b8e053cb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78975

View File

@ -121,7 +121,7 @@ add_file(AuthenticationConnection *ac, const char *filename)
/* clear passphrase since it did not work */
clear_pass();
printf("Need passphrase for %.200s\n", filename);
snprintf(msg, sizeof msg, "Enter passphrase for %.200s ",
snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
comment);
for (;;) {
pass = read_passphrase(msg, 1);