typo fix in a comment in a testcase. oh well...
[oweals/busybox.git] / sysklogd / syslogd.c
index 7ab9620fb0130f5c485841f883e9c8598c3dfdab..754fa44b3ad8029915bd739b65cfc0bb0c4594d9 100644 (file)
@@ -21,7 +21,6 @@
 #include <syslog.h>
 */
 
-#include <paths.h>
 #include <sys/un.h>
 #include <sys/uio.h>
 
@@ -423,6 +422,8 @@ static void timestamp_and_log(int pri, char *msg, int len)
        char *timestamp;
        time_t now;
 
+       /* Jan 18 00:11:22 msg... */
+       /* 01234567890123456 */
        if (len < 16 || msg[3] != ' ' || msg[6] != ' '
         || msg[9] != ':' || msg[12] != ':' || msg[15] != ' '
        ) {