diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-11-19 07:01:37 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-11-19 07:01:37 +0000 |
commit | 3853f230155e4dfbbb28051a8e4071991d3013c7 (patch) | |
tree | cb366c7ee3390df4d394e5ae135a75c880d3b00c /sysutils/rsyslog/files/patch-syslogd.c | |
parent | - drop support for kde4-l10n-eo and kde4-l10n-ta (diff) |
2009-10-26 editors/qemacs: depends on old version of GCC, no maintainer, not used by any other port, dead upstream
2009-11-03 mail/postfix-gps-devel: Older than main port, no sign of maintainer activity beyond port creation 4+ years ago
2009-10-12 graphics/php4-ffmpeg: development continues only for php5
2009-10-31 net-p2p/nicotine: development stalled years ago, use net-p2p/nicotine-plus instead
2009-11-07 sysutils/rsyslog: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
2009-11-07 sysutils/rsyslog-gssapi: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
2009-11-07 sysutils/rsyslog-mysql: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
2009-11-07 sysutils/rsyslog-pgsql: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
2009-11-17 misc/kde4-l10n-ta: unfetchable and unmaintained upstream
2009-11-17 misc/kde4-l10n-eo: unfetchable and unmaintained upstream
Notes
Notes:
svn path=/head/; revision=244461
Diffstat (limited to 'sysutils/rsyslog/files/patch-syslogd.c')
-rw-r--r-- | sysutils/rsyslog/files/patch-syslogd.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/sysutils/rsyslog/files/patch-syslogd.c b/sysutils/rsyslog/files/patch-syslogd.c deleted file mode 100644 index f646cc94c27d..000000000000 --- a/sysutils/rsyslog/files/patch-syslogd.c +++ /dev/null @@ -1,22 +0,0 @@ ---- ./syslogd.c.orig 2007-08-25 20:07:21.000000000 +0400 -+++ ./syslogd.c 2007-08-25 20:08:39.000000000 +0400 -@@ -86,7 +86,6 @@ - #include "rsyslog.h" - - #ifdef __FreeBSD__ --#define BSD - #endif - - /* change the following setting to e.g. 32768 if you would like to -@@ -1877,6 +1876,11 @@ - return iRet; - } - -+size_t strnlen (const char *string, size_t maxlen) -+{ -+ const char *end = memchr (string, '\0', maxlen); -+ return end ? (size_t) (end - string) : maxlen; -+} - - /* rgerhards, 2005-10-24: crunch_list is called only during option processing. So - * it is never called once rsyslogd is running (not even when HUPed). This code |