diff options
author | Eric Andersen | 2002-03-20 09:52:45 +0000 |
---|---|---|
committer | Eric Andersen | 2002-03-20 09:52:45 +0000 |
commit | b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f (patch) | |
tree | b08036e93870e707ebd70e36ba1cf8b073069a8b | |
parent | 3ad0bd956385fa695c5f6c0bddb945d7f9fe6ab2 (diff) | |
download | busybox-b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f.zip busybox-b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f.tar.gz |
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 6db017c..ae5a1d0 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -362,7 +362,7 @@ static const int IOV_COUNT = 2; v->iov_len = strlen(msg); if ( -1 == writev(remotefd,iov, IOV_COUNT)){ - error_msg_and_die("syslogd: cannot write to remote file handle on" + error_msg_and_die("syslogd: cannot write to remote file handle on " "%s:%d",RemoteHost,RemotePort); } } |