diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-09 00:46:36 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-09 00:46:36 +0000 |
commit | 0fcb772dd54ab078b73de19f704fd5f35a269914 (patch) | |
tree | 5f841a3f89f27fb8975e673101189a891c90af6c /libexec/telnetd/state.c | |
parent | 0e43a2763f315bf4630c0c663f53487bb2964fa2 (diff) |
no more \n to syslog()
Diffstat (limited to 'libexec/telnetd/state.c')
-rw-r--r-- | libexec/telnetd/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/telnetd/state.c b/libexec/telnetd/state.c index 4b1441a3bbf..d20f49eb80c 100644 --- a/libexec/telnetd/state.c +++ b/libexec/telnetd/state.c @@ -339,7 +339,7 @@ telrcv(void) continue; default: - syslog(LOG_ERR, "telnetd: panic state=%d\n", state); + syslog(LOG_ERR, "telnetd: panic state=%d", state); printf("telnetd: panic state=%d\n", state); exit(1); } |