summaryrefslogtreecommitdiff
path: root/databases/usogres/files/patch-SysLog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'databases/usogres/files/patch-SysLog.cc')
-rw-r--r--databases/usogres/files/patch-SysLog.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/databases/usogres/files/patch-SysLog.cc b/databases/usogres/files/patch-SysLog.cc
deleted file mode 100644
index 68a7efbaad60..000000000000
--- a/databases/usogres/files/patch-SysLog.cc
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/SysLog.cc.orig Sat Sep 6 23:03:07 2003
-+++ src/SysLog.cc Sat Sep 6 23:07:08 2003
-@@ -57,7 +57,11 @@
-
- char* pbuf = new char[strlen(format)*3];
- ::vsprintf(pbuf, format, ap);
-+#if defined(NDEBUG)
-+ if (lvl <= LOG_ERR) ::syslog(lvl, pbuf);
-+#else
- ::syslog(lvl, pbuf);
-+#endif
- delete [] pbuf;
-
- va_end(ap);