Module Name: src Committed By: christos Date: Wed Aug 18 08:09:17 UTC 2010
Modified Files: src/lib/libutil: passwd.c Log Message: Log via syslog(3) when we run pwd_mkdb(8). To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/lib/libutil/passwd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libutil/passwd.c diff -u src/lib/libutil/passwd.c:1.48 src/lib/libutil/passwd.c:1.49 --- src/lib/libutil/passwd.c:1.48 Sun Jan 18 07:13:04 2009 +++ src/lib/libutil/passwd.c Wed Aug 18 04:09:17 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: passwd.c,v 1.48 2009/01/18 12:13:04 lukem Exp $ */ +/* $NetBSD: passwd.c,v 1.49 2010/08/18 08:09:17 christos Exp $ */ /* * Copyright (c) 1987, 1993, 1994, 1995 @@ -31,7 +31,7 @@ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: passwd.c,v 1.48 2009/01/18 12:13:04 lukem Exp $"); +__RCSID("$NetBSD: passwd.c,v 1.49 2010/08/18 08:09:17 christos Exp $"); #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -150,7 +150,7 @@ args[0] = "pwd_mkdb"; args[1] = "-d"; args[2] = pw_prefix; - args[3] = "-p"; + args[3] = "-pl"; i = 4; if (secureonly)