Adjust indention
This commit is contained in:
parent
91b3e07d6e
commit
0bb8aa7194
22
syslogd.c
22
syslogd.c
@ -2194,20 +2194,20 @@ void domark()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef SYSV
|
#ifdef SYSV
|
||||||
for (lognum = 0; lognum <= nlogs; lognum++) {
|
for (lognum = 0; lognum <= nlogs; lognum++) {
|
||||||
f = &Files[lognum];
|
f = &Files[lognum];
|
||||||
#else
|
#else
|
||||||
for (f = Files; f; f = f->f_next) {
|
for (f = Files; f; f = f->f_next) {
|
||||||
#endif
|
#endif
|
||||||
if (f->f_prevcount && now >= REPEATTIME(f)) {
|
if (f->f_prevcount && now >= REPEATTIME(f)) {
|
||||||
dprintf("flush %s: repeated %d times, %d sec.\n",
|
dprintf("flush %s: repeated %d times, %d sec.\n",
|
||||||
TypeNames[f->f_type], f->f_prevcount,
|
TypeNames[f->f_type], f->f_prevcount,
|
||||||
repeatinterval[f->f_repeatcount]);
|
repeatinterval[f->f_repeatcount]);
|
||||||
fprintlog(f, LocalHostName, 0, (char *)NULL);
|
fprintlog(f, LocalHostName, 0, (char *)NULL);
|
||||||
BACKOFF(f);
|
BACKOFF(f);
|
||||||
DupesPending--;
|
DupesPending--;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
(void) signal(SIGALRM, domark);
|
(void) signal(SIGALRM, domark);
|
||||||
|
|
||||||
LastAlarm = MarkInterval - MarkSeq;
|
LastAlarm = MarkInterval - MarkSeq;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user