svn commit: r336060 - head/usr.sbin/syslogd
Ed Schouten
ed at FreeBSD.org
Sat Jul 7 11:53:40 UTC 2018
Author: ed
Date: Sat Jul 7 11:53:39 2018
New Revision: 336060
URL: https://svnweb.freebsd.org/changeset/base/336060
Log:
Allow the use of slashes in process names of RFC 3164 formatted messages.
Tools such as Postfix use slashes in process names for hierarchy
(postfix/qmgr). By allowing these slashes, syslogd is able to extract
the process name and process ID nicely, so that they can be stored in
RFC 5424 message fields.
MFC after: 1 week
Modified:
head/usr.sbin/syslogd/syslogd.c
Modified: head/usr.sbin/syslogd/syslogd.c
==============================================================================
--- head/usr.sbin/syslogd/syslogd.c Sat Jul 7 11:39:20 2018 (r336059)
+++ head/usr.sbin/syslogd/syslogd.c Sat Jul 7 11:53:39 2018 (r336060)
@@ -1120,7 +1120,7 @@ parsemsg_rfc3164_app_name_procid(char **msg, const cha
"abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789"
- "_-");
+ "_-/");
if (app_name_length == 0)
goto bad;
m += app_name_length;
More information about the svn-src-all
mailing list