The prototype of syslog is `void syslog(int pri, const char *format_string, ...)` We should be doing the call equivalent to `syslog(user_provided_priority, "%s", user_provided_string)`
The prototype of syslog is
void syslog(int pri, const char *format_string, ...)We should be doing the call equivalent to
syslog(user_provided_priority, "%s", user_provided_string)