diff options
author | gene <gene@cvs.openbsd.org> | 1997-11-21 01:01:45 +0000 |
---|---|---|
committer | gene <gene@cvs.openbsd.org> | 1997-11-21 01:01:45 +0000 |
commit | 52d932444b9141793a177ba0a2e8a2351c539ffc (patch) | |
tree | 2c4486b541980666a1fe41f81e9092ac933b64fe /libexec/fingerd | |
parent | 407e478681a8359118dd0f376c17fd5da50754d1 (diff) |
Remove LOG_CONS from openlog() call so every darned finger connect message
doesn't go to console. Change discussed and checked with millert.
Diffstat (limited to 'libexec/fingerd')
-rw-r--r-- | libexec/fingerd/fingerd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/fingerd/fingerd.c b/libexec/fingerd/fingerd.c index 4b59afc60fb..637061da018 100644 --- a/libexec/fingerd/fingerd.c +++ b/libexec/fingerd/fingerd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fingerd.c,v 1.11 1997/11/17 00:43:25 millert Exp $ */ +/* $OpenBSD: fingerd.c,v 1.12 1997/11/21 01:01:44 gene Exp $ */ /* * Copyright (c) 1983, 1993 @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "from: @(#)fingerd.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$OpenBSD: fingerd.c,v 1.11 1997/11/17 00:43:25 millert Exp $"; +static char rcsid[] = "$OpenBSD: fingerd.c,v 1.12 1997/11/21 01:01:44 gene Exp $"; #endif #endif /* not lint */ @@ -77,7 +77,7 @@ main(argc, argv) prog = _PATH_FINGER; logging = secure = user_required = short_list = 0; - openlog("fingerd", LOG_PID | LOG_CONS, LOG_DAEMON); + openlog("fingerd", LOG_PID, LOG_DAEMON); opterr = 0; while ((ch = getopt(argc, argv, "sluSmMpP:")) != -1) switch (ch) { |