diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-07-10 19:57:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-07-10 19:57:32 +0000 |
commit | a9d36a15300d00a032a09acbf3e23685223599ab (patch) | |
tree | 1355e9bb5ad763077c866996a57ba331adcebae6 /usr.sbin | |
parent | 76d8c6100b29ba90460be770779de539ba488b04 (diff) |
Fix encryption method prompt; Nick Nauwelaerts
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/adduser/adduser.perl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/adduser/adduser.perl b/usr.sbin/adduser/adduser.perl index 1a166d4baaa..805ca59967a 100644 --- a/usr.sbin/adduser/adduser.perl +++ b/usr.sbin/adduser/adduser.perl @@ -1,6 +1,6 @@ #!/usr/bin/perl # -# $OpenBSD: adduser.perl,v 1.38 2002/06/14 21:35:01 todd Exp $ +# $OpenBSD: adduser.perl,v 1.39 2002/07/10 19:57:31 millert Exp $ # # Copyright (c) 1995-1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin. # All rights reserved. @@ -89,7 +89,7 @@ sub variables { $group = "/etc/group"; $pwd_mkdb = "pwd_mkdb -p"; # program for building passwd database $encryptionmethod = "blowfish"; - $rcsid = '$OpenBSD: adduser.perl,v 1.38 2002/06/14 21:35:01 todd Exp $'; + $rcsid = '$OpenBSD: adduser.perl,v 1.39 2002/07/10 19:57:31 millert Exp $'; # List of directories where shells located @path = ('/bin', '/usr/bin', '/usr/local/bin'); @@ -842,7 +842,7 @@ sub encryption_default { local($m) = ""; if ($verbose) { while (&encryption_check($m) == 0) { - $m = &confirm_list("Default encryption method for passwords", 1, + $m = &confirm_list("Default encryption method for passwords:", 1, $encryption_methods[0], @encryption_methods); } } |