diff options
author | 2005-07-15 03:36:10 +0000 | |
---|---|---|
committer | 2005-07-15 03:36:10 +0000 | |
commit | d14227b6d39d87a1d0ed2da548879a3c34297c3d (patch) | |
tree | 6069c27712ae42dcbb86c4f5c9b0a0c33a18585e | |
parent | fix a function name in an error message (diff) | |
download | wireguard-openbsd-d14227b6d39d87a1d0ed2da548879a3c34297c3d.tar.xz wireguard-openbsd-d14227b6d39d87a1d0ed2da548879a3c34297c3d.zip |
remove recently added "using privsep user X" message, spams console in -s
mode, noticed by kettenis
-rw-r--r-- | usr.sbin/ntpd/ntp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ntpd/ntp.c b/usr.sbin/ntpd/ntp.c index 344f481dcdb..53dae9a3822 100644 --- a/usr.sbin/ntpd/ntp.c +++ b/usr.sbin/ntpd/ntp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntp.c,v 1.64 2005/07/15 03:34:52 henning Exp $ */ +/* $OpenBSD: ntp.c,v 1.65 2005/07/15 03:36:10 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -96,7 +96,6 @@ ntp_main(int pipe_prnt[2], struct ntpd_conf *nconf) if ((nullfd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) fatal(NULL); - log_debug("using privsep user '%s' dir '%s'", pw->pw_name, pw->pw_dir); if (stat(pw->pw_dir, &stb) == -1) fatal("stat"); if (stb.st_uid != 0 || (stb.st_mode & (S_IWGRP|S_IWOTH)) != 0) |