X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/08ee90a207d1a9c0b3e34d1db06cd7502ad48990..7908f2c6b5be419f8f4031876139953d4ee8340d:/log.c diff --git a/log.c b/log.c index 16ed60a..837ed55 100644 --- a/log.c +++ b/log.c @@ -29,7 +29,7 @@ static void vMessage(uint32_t class, const char *message, va_list args) /* Each line is sent separately */ while ((nlp=strchr(buff,'\n'))) { *nlp=0; - slilog(system_log,class,buff); + slilog(system_log,class,"%s",buff); memmove(buff,nlp+1,strlen(nlp+1)+1); } } else { @@ -555,7 +555,6 @@ void log_from_fd(int fd, cstring_t prefix, struct log_if *log) prefix); } -init_module log_module; void log_module(dict_t *dict) { add_closure(dict,"logfile",logfile_apply);