diff options
Diffstat (limited to 'app-antivirus/skyldav/files/skyldav-0.2_rc4-more-syslog-messages.patch')
-rw-r--r-- | app-antivirus/skyldav/files/skyldav-0.2_rc4-more-syslog-messages.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app-antivirus/skyldav/files/skyldav-0.2_rc4-more-syslog-messages.patch b/app-antivirus/skyldav/files/skyldav-0.2_rc4-more-syslog-messages.patch new file mode 100644 index 0000000..0fe7d70 --- /dev/null +++ b/app-antivirus/skyldav/files/skyldav-0.2_rc4-more-syslog-messages.patch @@ -0,0 +1,16 @@ +diff -urN skyldav-0.2rc4.orig/src/skyldav/Messaging.cc skyldav-0.2rc4/src/skyldav/Messaging.cc +--- skyldav-0.2rc4.orig/src/skyldav/Messaging.cc 2013-08-25 13:20:14.000000000 +0200 ++++ skyldav-0.2rc4/src/skyldav/Messaging.cc 2013-08-25 21:49:02.856257000 +0200 +@@ -105,10 +105,12 @@ + break; + case DEBUG: + type = "D"; ++ syslog(LOG_NOTICE, "%s", message.c_str()); + std::cout << message << std::endl; + return; + default: + type = " "; ++ syslog(LOG_NOTICE, "%s", message.c_str()); + std::cout << message << std::endl; + break; + } |