aboutsummaryrefslogtreecommitdiff
path: root/Linux-PAM/modules/pam_userdb/create.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Linux-PAM/modules/pam_userdb/create.pl')
-rw-r--r--Linux-PAM/modules/pam_userdb/create.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Linux-PAM/modules/pam_userdb/create.pl b/Linux-PAM/modules/pam_userdb/create.pl
index 2668ef4a..28088102 100644
--- a/Linux-PAM/modules/pam_userdb/create.pl
+++ b/Linux-PAM/modules/pam_userdb/create.pl
@@ -2,12 +2,12 @@
# this program creates a database in ARGV[1] from pairs given on
# stdandard input
#
-# $Id: create.pl,v 1.1.1.1 2001/04/29 04:17:42 hartmans Exp $
+# $Id: create.pl,v 1.2 2004/09/28 13:48:47 kukuk Exp $
use DB_File;
my $database = $ARGV[0];
-die "Use: check,pl <database>\n" unless ($database);
+die "Use: create.pl <database>\n" unless ($database);
print "Using database: $database\n";
my %lusers = ();