mirror of https://github.com/mirror/busybox.git
Fix from Paul Kortekaas for syslog -C option, size should be in kB.
parent
4bded58207
commit
df2c56529c
|
@ -660,7 +660,7 @@ extern int syslogd_main(int argc, char **argv)
|
|||
if (optarg) {
|
||||
int buf_size = atoi(optarg);
|
||||
if (buf_size >= 4) {
|
||||
shm_size = buf_size;
|
||||
shm_size = buf_size * 1024;
|
||||
}
|
||||
}
|
||||
circular_logging = TRUE;
|
||||
|
|
Loading…
Reference in New Issue