summaryrefslogtreecommitdiffstats
path: root/usr.sbin/adduser
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-02-14 19:08:03 +0000
committertedu <tedu@openbsd.org>2014-02-14 19:08:03 +0000
commit96bc4355f2db473b0b13bf5e416b9f0b2501a8f2 (patch)
tree269a6d0da3d52e261adb06ab36dd75e1a595078f /usr.sbin/adduser
parentconvert from tbl(7) to mdoc(7) .Bl -column; (diff)
downloadwireguard-openbsd-96bc4355f2db473b0b13bf5e416b9f0b2501a8f2.tar.xz
wireguard-openbsd-96bc4355f2db473b0b13bf5e416b9f0b2501a8f2.zip
clarify no password only disables password logins. from david hill.
ok halex
Diffstat (limited to 'usr.sbin/adduser')
-rw-r--r--usr.sbin/adduser/adduser.perl4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/adduser/adduser.perl b/usr.sbin/adduser/adduser.perl
index 15155c797c4..b234aaf6218 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.58 2011/09/22 10:59:23 deraadt Exp $
+# $OpenBSD: adduser.perl,v 1.59 2014/02/14 19:08:03 tedu Exp $
#
# Copyright (c) 1995-1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
# All rights reserved.
@@ -750,7 +750,7 @@ sub new_users_password {
last if $password eq $newpass;
print "They didn't match, please try again\n";
}
- elsif (!&confirm_yn("Set the password so that user cannot logon?", "no")) {
+ elsif (!&confirm_yn("Disable password logins for the user?", "no")) {
last;
}
}