diff options
author | Eric Andersen | 2001-01-25 23:49:09 +0000 |
---|---|---|
committer | Eric Andersen | 2001-01-25 23:49:09 +0000 |
commit | d35c21587a4139031c077fd122252217a4713681 (patch) | |
tree | 7bd14fd247492c00f3d38ae1dbd7727e03fda9ad /sysklogd | |
parent | ffde8673fe8b2c32076aa3e01eab1fefc5f08e86 (diff) | |
download | busybox-d35c21587a4139031c077fd122252217a4713681.zip busybox-d35c21587a4139031c077fd122252217a4713681.tar.gz |
Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch.
-Erik
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/syslogd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 114516e..972fda1 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -209,7 +209,7 @@ static void domark(int sig) static const int BUFSIZE = 1023; static int serveConnection (int conn) { - char buf[ BUFSIZE + 1 ]; + RESERVE_BB_BUFFER(buf, BUFSIZE + 1); int n_read; while ((n_read = read (conn, buf, BUFSIZE )) > 0) { @@ -296,7 +296,7 @@ static void doSyslogd (void) int sock_fd; fd_set fds; - char lfile[BUFSIZ]; + RESERVE_BB_BUFFER(lfile, BUFSIZ); /* Set up signal handlers. */ signal (SIGINT, quit_signal); |