https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239385
Bug ID: 239385
Summary: syslog: make it posible to have "." in app_name
Product: Base System
Version: CURRENT
Hardware: Any
OS: Any
Status: New
Severity: Affects Only Me
Priority: ---
Component: bin
Assignee: [email protected]
Reporter: [email protected]
App_name field in current syslog message parsed with this code:
----- >8 -------
app_name_length = strspn(m,
"abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789"
"_-/")
---- >8 --------
What if it will look like that:
----- >8 -------
app_name_length = strspn(m,
"abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789"
"._-/")
---- >8 --------
to have something like `com.example.myprog[1234]` as valid identity?
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"