aboutsummaryrefslogtreecommitdiff
path: root/sysklogd
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-03-20 09:52:45 +0000
committerEric Andersen <andersen@codepoet.org>2002-03-20 09:52:45 +0000
commitb159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f (patch)
treeb08036e93870e707ebd70e36ba1cf8b073069a8b /sysklogd
parent3ad0bd956385fa695c5f6c0bddb945d7f9fe6ab2 (diff)
downloadbusybox-b159146fa6bbc779c5d9f01e3058cd0a9a6f2e8f.tar.gz
Add missing " " after the word on, as reported by Jason Luther
back in mid-december. -Erik
Diffstat (limited to 'sysklogd')
-rw-r--r--sysklogd/syslogd.c2
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;
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);
}
}