summaryrefslogtreecommitdiff
path: root/runit/svlogd.c
diff options
context:
space:
mode:
Diffstat (limited to 'runit/svlogd.c')
-rw-r--r--runit/svlogd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/runit/svlogd.c b/runit/svlogd.c
index 6c8747e96..b5eed15ab 100644
--- a/runit/svlogd.c
+++ b/runit/svlogd.c
@@ -665,7 +665,7 @@ static ssize_t ndelay_read(int fd, void *buf, size_t count)
665} 665}
666 666
667/* Used for reading stdin */ 667/* Used for reading stdin */
668static int buffer_pread(int fd, char *s, unsigned len) 668static int buffer_pread(/*int fd, */char *s, unsigned len)
669{ 669{
670 unsigned now; 670 unsigned now;
671 struct pollfd input; 671 struct pollfd input;
@@ -709,7 +709,7 @@ static int buffer_pread(int fd, char *s, unsigned len)
709 poll(&input, 1, i * 1000); 709 poll(&input, 1, i * 1000);
710 sigprocmask(SIG_BLOCK, blocked_sigset, NULL); 710 sigprocmask(SIG_BLOCK, blocked_sigset, NULL);
711 711
712 i = ndelay_read(fd, s, len); 712 i = ndelay_read(0, s, len);
713 if (i >= 0) 713 if (i >= 0)
714 break; 714 break;
715 if (errno == EINTR) 715 if (errno == EINTR)
@@ -909,7 +909,7 @@ int svlogd_main(int argc, char **argv)
909 if (!np && !exitasap) { 909 if (!np && !exitasap) {
910 i = linemax - stdin_cnt; /* avail. bytes at tail */ 910 i = linemax - stdin_cnt; /* avail. bytes at tail */
911 if (i >= 128) { 911 if (i >= 128) {
912 i = buffer_pread(0, lineptr + stdin_cnt, i); 912 i = buffer_pread(/*0, */lineptr + stdin_cnt, i);
913 if (i <= 0) /* EOF or error on stdin */ 913 if (i <= 0) /* EOF or error on stdin */
914 exitasap = 1; 914 exitasap = 1;
915 else { 915 else {
@@ -966,7 +966,7 @@ int svlogd_main(int argc, char **argv)
966 /* read/write repeatedly until we see it */ 966 /* read/write repeatedly until we see it */
967 while (ch != '\n') { 967 while (ch != '\n') {
968 /* lineptr is emptied now, safe to use as buffer */ 968 /* lineptr is emptied now, safe to use as buffer */
969 stdin_cnt = exitasap ? -1 : buffer_pread(0, lineptr, linemax); 969 stdin_cnt = exitasap ? -1 : buffer_pread(/*0, */lineptr, linemax);
970 if (stdin_cnt <= 0) { /* EOF or error on stdin */ 970 if (stdin_cnt <= 0) { /* EOF or error on stdin */
971 exitasap = 1; 971 exitasap = 1;
972 lineptr[0] = ch = '\n'; 972 lineptr[0] = ch = '\n';