summaryrefslogtreecommitdiff
path: root/sysklogd
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-25 23:49:09 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-25 23:49:09 +0000
commitd35c21587a4139031c077fd122252217a4713681 (patch)
tree7bd14fd247492c00f3d38ae1dbd7727e03fda9ad /sysklogd
parentffde8673fe8b2c32076aa3e01eab1fefc5f08e86 (diff)
downloadbusybox-w32-d35c21587a4139031c077fd122252217a4713681.tar.gz
busybox-w32-d35c21587a4139031c077fd122252217a4713681.tar.bz2
busybox-w32-d35c21587a4139031c077fd122252217a4713681.zip
Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch.
-Erik
Diffstat (limited to 'sysklogd')
-rw-r--r--sysklogd/syslogd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 114516e2f..972fda15f 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -209,7 +209,7 @@ static void domark(int sig)
209static const int BUFSIZE = 1023; 209static const int BUFSIZE = 1023;
210static int serveConnection (int conn) 210static int serveConnection (int conn)
211{ 211{
212 char buf[ BUFSIZE + 1 ]; 212 RESERVE_BB_BUFFER(buf, BUFSIZE + 1);
213 int n_read; 213 int n_read;
214 214
215 while ((n_read = read (conn, buf, BUFSIZE )) > 0) { 215 while ((n_read = read (conn, buf, BUFSIZE )) > 0) {
@@ -296,7 +296,7 @@ static void doSyslogd (void)
296 int sock_fd; 296 int sock_fd;
297 fd_set fds; 297 fd_set fds;
298 298
299 char lfile[BUFSIZ]; 299 RESERVE_BB_BUFFER(lfile, BUFSIZ);
300 300
301 /* Set up signal handlers. */ 301 /* Set up signal handlers. */
302 signal (SIGINT, quit_signal); 302 signal (SIGINT, quit_signal);