summaryrefslogtreecommitdiffstats
path: root/usr.sbin/adduser/adduser.perl
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2001-09-03 16:19:32 +0000
committermillert <millert@openbsd.org>2001-09-03 16:19:32 +0000
commitf5e249d44a69026a1cfd48da9cc9560255f4b410 (patch)
tree44b9566bbdd51cac27aca0c43d52e856d82277a7 /usr.sbin/adduser/adduser.perl
parentNo longer any reason to care if calendar file is a pipe or not. (diff)
downloadwireguard-openbsd-f5e249d44a69026a1cfd48da9cc9560255f4b410.tar.xz
wireguard-openbsd-f5e249d44a69026a1cfd48da9cc9560255f4b410.zip
correct error message when unable to open /etc/master.passwd; raj@cerias.purdue.edu
Diffstat (limited to 'usr.sbin/adduser/adduser.perl')
-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 207cea9f5ee..723e3efc5f4 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.30 2001/07/06 15:39:36 mpech Exp $
+# $OpenBSD: adduser.perl,v 1.31 2001/09/03 16:19:32 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.30 2001/07/06 15:39:36 mpech Exp $';
+ $rcsid = '$OpenBSD: adduser.perl,v 1.31 2001/09/03 16:19:32 millert Exp $';
# List of directories where shells located
@path = ('/bin', '/usr/bin', '/usr/local/bin');
@@ -294,7 +294,7 @@ sub passwd_read {
local($p_username, $pw, $p_uid, $p_gid, $sh, %shlist);
print "Check $etc_passwd\n" if $verbose;
- open(P, "$etc_passwd") || die "$passwd: $!\n";
+ open(P, "$etc_passwd") || die "$etc_passwd: $!\n";
# we only use this to lock the password file
sysopen(PTMP, $etc_ptmp, O_RDWR|O_CREAT|O_EXCL, 0600) ||