diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-20 09:52:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-20 09:52:45 +0000 |
commit | b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f (patch) | |
tree | b08036e93870e707ebd70e36ba1cf8b073069a8b | |
parent | 3ad0bd956385fa695c5f6c0bddb945d7f9fe6ab2 (diff) | |
download | busybox-w32-b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f.tar.gz busybox-w32-b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f.tar.bz2 busybox-w32-b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f.zip |
Add missing " " after the word on, as reported by Jason Luther
back in mid-december.
-Erik
-rw-r--r-- | sysklogd/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 6db017cd4..ae5a1d0ba 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c | |||
@@ -362,7 +362,7 @@ static const int IOV_COUNT = 2; | |||
362 | v->iov_len = strlen(msg); | 362 | v->iov_len = strlen(msg); |
363 | 363 | ||
364 | if ( -1 == writev(remotefd,iov, IOV_COUNT)){ | 364 | if ( -1 == writev(remotefd,iov, IOV_COUNT)){ |
365 | error_msg_and_die("syslogd: cannot write to remote file handle on" | 365 | error_msg_and_die("syslogd: cannot write to remote file handle on " |
366 | "%s:%d",RemoteHost,RemotePort); | 366 | "%s:%d",RemoteHost,RemotePort); |
367 | } | 367 | } |
368 | } | 368 | } |