Fix from Paul Kortekaas for syslog -C option, size should be in kB.
This commit is contained in:
parent
4bded58207
commit
df2c56529c
@ -660,7 +660,7 @@ extern int syslogd_main(int argc, char **argv)
|
|||||||
if (optarg) {
|
if (optarg) {
|
||||||
int buf_size = atoi(optarg);
|
int buf_size = atoi(optarg);
|
||||||
if (buf_size >= 4) {
|
if (buf_size >= 4) {
|
||||||
shm_size = buf_size;
|
shm_size = buf_size * 1024;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
circular_logging = TRUE;
|
circular_logging = TRUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user