summaryrefslogtreecommitdiffstats
path: root/usr.sbin/adduser
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-07-10 19:57:31 +0000
committermillert <millert@openbsd.org>2002-07-10 19:57:31 +0000
commit2384d3f11e29cd4d5d0350aae4cb5c23d7431b30 (patch)
tree50c96a65a8e947d0f933f76203f333c5d5e415b9 /usr.sbin/adduser
parentradio devices (diff)
downloadwireguard-openbsd-2384d3f11e29cd4d5d0350aae4cb5c23d7431b30.tar.xz
wireguard-openbsd-2384d3f11e29cd4d5d0350aae4cb5c23d7431b30.zip
Fix encryption method prompt; Nick Nauwelaerts
Diffstat (limited to 'usr.sbin/adduser')
-rw-r--r--usr.sbin/adduser/adduser.perl6
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);
}
}