projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18433aa
)
applying fix for:
author
Paul Fox
<pgf@brightstareng.com>
Wed, 20 Jul 2005 18:02:11 +0000
(18:02 -0000)
committer
Paul Fox
<pgf@brightstareng.com>
Wed, 20 Jul 2005 18:02:11 +0000
(18:02 -0000)
0000143
: sysklogd remote logging adds a space between facility and tag
sysklogd/syslogd.c
patch
|
blob
|
history
diff --git
a/sysklogd/syslogd.c
b/sysklogd/syslogd.c
index 8c6c44ee0a5c918c00d8c649257a12aaceeea98d..aecd35d588e050375e5be76ab3ef1debfd501815 100644
(file)
--- a/
sysklogd/syslogd.c
+++ b/
sysklogd/syslogd.c
@@
-441,7
+441,7
@@
static void logMessage(int pri, char *msg)
/* if we have a valid socket, send the message */
if (-1 != remotefd) {
now = 1;
- snprintf(line, sizeof(line), "<%d>
%s", pri, msg);
+ snprintf(line, sizeof(line), "<%d>%s", pri, msg);
retry:
/* send message to remote logger */