summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Schlich <wschlich@gentoo.org>2013-08-25 22:27:21 +0200
committerWolfram Schlich <wschlich@gentoo.org>2013-08-25 22:27:21 +0200
commit2ea608b71539b4cd76ddba6161012ede9cd7daf2 (patch)
tree46c9804b7a1b98adec79cbe072528fc5c9ffd025 /app-antivirus/skyldav/files/skyldav-0.2_rc4-more-syslog-messages.patch
parentadded clamav version dependency (diff)
downloadwschlich-2ea608b71539b4cd76ddba6161012ede9cd7daf2.tar.gz
wschlich-2ea608b71539b4cd76ddba6161012ede9cd7daf2.tar.bz2
wschlich-2ea608b71539b4cd76ddba6161012ede9cd7daf2.zip
version bump, removed old versions
Package-Manager: portage-2.2.1
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.patch16
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;
+ }