diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-20 13:22:10 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-20 13:22:10 +0000 |
commit | d4891ebc3088864edfc6281691418b4387461557 (patch) | |
tree | d5824cf9aad62eca24b73911f144105cc7ae3485 /syslogd.c | |
parent | 7f5f7dd9e2e887d9abcf43d2e089d478430d02e0 (diff) | |
download | rsyslog-d4891ebc3088864edfc6281691418b4387461557.tar.gz rsyslog-d4891ebc3088864edfc6281691418b4387461557.tar.xz rsyslog-d4891ebc3088864edfc6281691418b4387461557.zip |
cleanup
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -662,7 +662,7 @@ static char *LocalDomain; /* our local domain name - read-only after startup */ static int *finet = NULL; /* Internet datagram sockets, first element is nbr of elements * read-only after init(), but beware of restart! */ static char *LogPort = "514"; /* port number for INET connections */ -static int MarkInterval = 20 * 60; /* interval between marks in seconds - read-only after startup */ +static int MarkInterval = 5;//20 * 60; /* interval between marks in seconds - read-only after startup */ static int family = PF_UNSPEC; /* protocol family (IPv4, IPv6 or both), set via cmdline */ static int send_to_all = 0; /* send message to all IPv4/IPv6 addresses */ static int MarkSeq = 0; /* mark sequence number - modified in domark() only */ @@ -5123,9 +5123,7 @@ int resolveFileSizeLimit(selector_t *f) * the space is treated as a single argument. */ if((pCmd = (uchar*)strdup((char*)f->f_un.f_file.f_sizeLimitCmd)) == NULL) { - /* there is not much we can do - let's hope for the best and let's - * hope the memory can be allocated on next try - */ + /* there is not much we can do - we make syslogd close the file in this case */ glblHadMemShortage = 1; return 1; } @@ -6068,7 +6066,7 @@ static void domark(void) { register selector_t *f; if (MarkInterval > 0) { - now = time(0); + now = time(NULL); MarkSeq += TIMERINTVL; if (MarkSeq >= MarkInterval) { logmsgInternal(LOG_INFO, "-- MARK --", ADDDATE|MARK); |