aboutsummaryrefslogtreecommitdiff
path: root/sysklogd/syslogd.c
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-22 12:59:26 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-22 12:59:26 +0000
commitec73ef9ed9bdf1ad245661c23ba01b477cb312f8 (patch)
treef698cdfc8c2ad2918174461fa533bab555172f78 /sysklogd/syslogd.c
parent90ce125324cb398fa2cc20cc320bd9d0a60a23bb (diff)
downloadbusybox-w32-ec73ef9ed9bdf1ad245661c23ba01b477cb312f8.tar.gz
busybox-w32-ec73ef9ed9bdf1ad245661c23ba01b477cb312f8.tar.bz2
busybox-w32-ec73ef9ed9bdf1ad245661c23ba01b477cb312f8.zip
more remove lost exported
git-svn-id: svn://busybox.net/trunk/busybox@11574 69ca8d6d-28ef-0310-b511-8ec308f3f277
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