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 /usr.sbin/rpc.lockd | |
parent | 1312340e81adc02ff3f652aacc20b2df4ceacf84 (diff) |
do not syslog() with "\n"; skipped smtpd/named/ipmon; 12 minutes of dabbling
Diffstat (limited to 'usr.sbin/rpc.lockd')
-rw-r--r-- | usr.sbin/rpc.lockd/procs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpc.lockd/procs.c b/usr.sbin/rpc.lockd/procs.c index 354e343c834..f48956706c6 100644 --- a/usr.sbin/rpc.lockd/procs.c +++ b/usr.sbin/rpc.lockd/procs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: procs.c,v 1.7 1997/09/17 23:09:38 deraadt Exp $ */ +/* $OpenBSD: procs.c,v 1.8 1998/07/10 08:06:52 deraadt Exp $ */ /* * Copyright (c) 1995 @@ -164,7 +164,7 @@ transmit_result(opcode, result, req) success = clnt_call(cli, opcode, xdr_nlm_res, result, xdr_void, &dummy, timeo); if (debug_level > 2) - syslog(LOG_DEBUG, "clnt_call returns %d\n", success); + syslog(LOG_DEBUG, "clnt_call returns %d", success); } } @@ -207,7 +207,7 @@ nlm_test_msg_1_svc(arg, rqstp) success = clnt_call(cli, NLM_TEST_RES, xdr_nlm_testres, &res, xdr_void, &dummy, timeo); if (debug_level > 2) - syslog(LOG_DEBUG, "clnt_call returns %d\n", success); + syslog(LOG_DEBUG, "clnt_call returns %d", success); } return (NULL); } |