diff options
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/klogd.c | 2 | ||||
-rw-r--r-- | sysklogd/logread.c | 2 | ||||
-rw-r--r-- | sysklogd/syslogd.c | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/sysklogd/klogd.c b/sysklogd/klogd.c index 17b6ca235..bdd0b6325 100644 --- a/sysklogd/klogd.c +++ b/sysklogd/klogd.c @@ -244,7 +244,7 @@ int klogd_main(int argc UNUSED_PARAM, char **argv) if (n < 0) { if (errno == EINTR) continue; - bb_perror_msg(READ_ERROR); + bb_simple_perror_msg(READ_ERROR); break; } start[n] = '\0'; diff --git a/sysklogd/logread.c b/sysklogd/logread.c index ea41fc0c8..1e1f1347f 100644 --- a/sysklogd/logread.c +++ b/sysklogd/logread.c @@ -88,7 +88,7 @@ static void error_exit(const char *str) } #else /* On Linux, shmdt is not mandatory on exit */ -# define error_exit(str) bb_perror_msg_and_die(str) +# define error_exit(str) bb_simple_perror_msg_and_die(str) #endif /* diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index d0dd1bd20..0e226124a 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -572,12 +572,12 @@ static void ipcsyslog_init(void) G.shmid = shmget(KEY_ID, G.shm_size, IPC_CREAT | 0644); if (G.shmid == -1) { - bb_perror_msg_and_die("shmget"); + bb_simple_perror_msg_and_die("shmget"); } G.shbuf = shmat(G.shmid, NULL, 0); if (G.shbuf == (void*) -1L) { /* shmat has bizarre error return */ - bb_perror_msg_and_die("shmat"); + bb_simple_perror_msg_and_die("shmat"); } memset(G.shbuf, 0, G.shm_size); @@ -592,7 +592,7 @@ static void ipcsyslog_init(void) if (G.s_semid != -1) return; } - bb_perror_msg_and_die("semget"); + bb_simple_perror_msg_and_die("semget"); } } @@ -603,7 +603,7 @@ static void log_to_shmem(const char *msg) int len; if (semop(G.s_semid, G.SMwdn, 3) == -1) { - bb_perror_msg_and_die("SMwdn"); + bb_simple_perror_msg_and_die("SMwdn"); } /* Circular Buffer Algorithm: @@ -631,7 +631,7 @@ static void log_to_shmem(const char *msg) goto again; } if (semop(G.s_semid, G.SMwup, 1) == -1) { - bb_perror_msg_and_die("SMwup"); + bb_simple_perror_msg_and_die("SMwup"); } if (DEBUG) printf("tail:%d\n", G.shbuf->tail); |