aboutsummaryrefslogtreecommitdiff
path: root/sysklogd/syslogd.c
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-22 12:59:26 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-22 12:59:26 +0000
commite4baaa2d2795c14775b26213d143e9f9f65e4d54 (patch)
treef698cdfc8c2ad2918174461fa533bab555172f78 /sysklogd/syslogd.c
parent007a01164705f3b086f5f4633e63a32d6c6e16c6 (diff)
downloadbusybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.tar.gz
busybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.tar.bz2
busybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.zip
more remove lost exported
Diffstat (limited to 'sysklogd/syslogd.c')
-rw-r--r--sysklogd/syslogd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 8f9d75cc6..3a8e519fe 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -150,7 +150,7 @@ static inline void sem_down(int semid)
150} 150}
151 151
152 152
153void ipcsyslog_cleanup(void) 153static void ipcsyslog_cleanup(void)
154{ 154{
155 printf("Exiting Syslogd!\n"); 155 printf("Exiting Syslogd!\n");
156 if (shmid != -1) { 156 if (shmid != -1) {
@@ -165,7 +165,7 @@ void ipcsyslog_cleanup(void)
165 } 165 }
166} 166}
167 167
168void ipcsyslog_init(void) 168static void ipcsyslog_init(void)
169{ 169{
170 if (buf == NULL) { 170 if (buf == NULL) {
171 if ((shmid = shmget(KEY_ID, shm_size, IPC_CREAT | 1023)) == -1) { 171 if ((shmid = shmget(KEY_ID, shm_size, IPC_CREAT | 1023)) == -1) {
@@ -195,7 +195,7 @@ void ipcsyslog_init(void)
195} 195}
196 196
197/* write message to buffer */ 197/* write message to buffer */
198void circ_message(const char *msg) 198static void circ_message(const char *msg)
199{ 199{
200 int l = strlen(msg) + 1; /* count the whole message w/ '\0' included */ 200 int l = strlen(msg) + 1; /* count the whole message w/ '\0' included */
201 201