diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-10 08:06:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-10 08:06:56 +0000 |
commit | de81fe773f9f41a5f3b47ce63ea5197aed965c43 (patch) | |
tree | 85a37e2b509eac6ea0a6bb3a1030b1444a3f9027 /libexec/talkd/table.c | |
parent | 1312340e81adc02ff3f652aacc20b2df4ceacf84 (diff) |
do not syslog() with "\n"; skipped smtpd/named/ipmon; 12 minutes of dabbling
Diffstat (limited to 'libexec/talkd/table.c')
-rw-r--r-- | libexec/talkd/table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/talkd/table.c b/libexec/talkd/table.c index f007a7c54c4..b528907f784 100644 --- a/libexec/talkd/table.c +++ b/libexec/talkd/table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: table.c,v 1.3 1996/07/15 05:10:11 mickey Exp $ */ +/* $OpenBSD: table.c,v 1.4 1998/07/10 08:06:19 deraadt Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -35,7 +35,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)table.c 5.7 (Berkeley) 2/26/91";*/ -static char rcsid[] = "$Id: table.c,v 1.3 1996/07/15 05:10:11 mickey Exp $"; +static char rcsid[] = "$Id: table.c,v 1.4 1998/07/10 08:06:19 deraadt Exp $"; #endif /* not lint */ /* @@ -115,7 +115,7 @@ find_match(request) return (&ptr->request); } if (debug) - syslog(LOG_DEBUG, "find_match: not found\n"); + syslog(LOG_DEBUG, "find_match: not found"); return ((CTL_MSG *)0); } |