applying fix for:
authorPaul Fox <pgf@brightstareng.com>
Wed, 20 Jul 2005 18:02:11 +0000 (18:02 -0000)
committerPaul 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

index 8c6c44ee0a5c918c00d8c649257a12aaceeea98d..aecd35d588e050375e5be76ab3ef1debfd501815 100644 (file)
@@ -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 */