diff options
-rw-r--r-- | utils/statd/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/statd/log.c b/utils/statd/log.c index 38f7d3a..cf903af 100644 --- a/utils/statd/log.c +++ b/utils/statd/log.c @@ -90,7 +90,7 @@ log(int level, char *fmt, ...) buffer[1023]=0; if (level < L_DEBUG) { - syslog(level, buffer); + syslog(level, "%s", buffer); } if (opt_debug) { |