From 67e32304b1cc0ecddc045c2b0362cec3780d7fd7 Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Mon, 19 Jun 2000 17:48:02 +0000
Subject: Updated to compile and work with libc5.  -Erik

---
 sysklogd/syslogd.c | 43 +++++++++++++++++++++++++++++--------------
 syslogd.c          | 43 +++++++++++++++++++++++++++++--------------
 2 files changed, 58 insertions(+), 28 deletions(-)

diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index c7906368d..d2fbc3d87 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -24,6 +24,8 @@
  */
 
 #include "internal.h"
+#include <stdio.h>
+#include <stdlib.h>
 #include <ctype.h>
 #include <errno.h>
 #include <fcntl.h>
@@ -31,18 +33,32 @@
 #include <paths.h>
 #include <signal.h>
 #include <stdarg.h>
-#include <stdio.h>
-#include <sys/klog.h>
+#include <time.h>
+#include <unistd.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <sys/un.h>
 #include <sys/param.h>
-#include <time.h>
-#include <unistd.h>
+#include <linux/unistd.h>
+
+#ifndef socklen_t
+typedef unsigned int socklen_t;
+#endif
+
+#if __GNU_LIBRARY__ < 5
+
+#ifndef __alpha__
+# define __NR_klogctl __NR_syslog
+static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
+#else							/* __alpha__ */
+#define klogctl syslog
+#endif
+
+#else
+# include <sys/klog.h>
+#endif
 
-#define ksyslog klogctl
-extern int ksyslog(int type, char *buf, int len);
 
 
 /* SYSLOG_NAMES defined to pull some extra junk from syslog.h */
@@ -171,8 +187,7 @@ static void domark(int sig)
 }
 
 #define BUFSIZE 1023
-static void serveConnection (int conn) __attribute__ ((noreturn));
-static void serveConnection (int conn)
+static int serveConnection (int conn)
 {
 	char   buf[ BUFSIZE + 1 ];
 	int    n_read;
@@ -210,7 +225,7 @@ static void serveConnection (int conn)
 		/* Now log it */
 		logMessage (pri, line);
 	}
-	exit (0);
+	return (0);
 }
 
 static void doSyslogd (void) __attribute__ ((noreturn));
@@ -307,8 +322,8 @@ static void doSyslogd (void)
 
 static void klogd_signal(int sig)
 {
-	ksyslog(7, NULL, 0);
-	ksyslog(0, 0, 0);
+	klogctl(7, NULL, 0);
+	klogctl(0, 0, 0);
 	logMessage(0, "Kernel log daemon exiting.");
 	exit(TRUE);
 }
@@ -328,12 +343,12 @@ static void doKlogd (void)
 	logMessage(0, "klogd started: "
 			   "BusyBox v" BB_VER " (" BB_BT ")");
 
-	ksyslog(1, NULL, 0);
+	klogctl(1, NULL, 0);
 
 	while (1) {
 		/* Use kernel syscalls */
 		memset(log_buffer, '\0', sizeof(log_buffer));
-		if (ksyslog(2, log_buffer, sizeof(log_buffer)) < 0) {
+		if (klogctl(2, log_buffer, sizeof(log_buffer)) < 0) {
 			char message[80];
 
 			if (errno == EINTR)
@@ -464,7 +479,7 @@ extern int syslogd_main(int argc, char **argv)
 		doSyslogd();
 	}
 
-	exit(TRUE);
+	return(TRUE);
 }
 
 /*
diff --git a/syslogd.c b/syslogd.c
index c7906368d..d2fbc3d87 100644
--- a/syslogd.c
+++ b/syslogd.c
@@ -24,6 +24,8 @@
  */
 
 #include "internal.h"
+#include <stdio.h>
+#include <stdlib.h>
 #include <ctype.h>
 #include <errno.h>
 #include <fcntl.h>
@@ -31,18 +33,32 @@
 #include <paths.h>
 #include <signal.h>
 #include <stdarg.h>
-#include <stdio.h>
-#include <sys/klog.h>
+#include <time.h>
+#include <unistd.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <sys/un.h>
 #include <sys/param.h>
-#include <time.h>
-#include <unistd.h>
+#include <linux/unistd.h>
+
+#ifndef socklen_t
+typedef unsigned int socklen_t;
+#endif
+
+#if __GNU_LIBRARY__ < 5
+
+#ifndef __alpha__
+# define __NR_klogctl __NR_syslog
+static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
+#else							/* __alpha__ */
+#define klogctl syslog
+#endif
+
+#else
+# include <sys/klog.h>
+#endif
 
-#define ksyslog klogctl
-extern int ksyslog(int type, char *buf, int len);
 
 
 /* SYSLOG_NAMES defined to pull some extra junk from syslog.h */
@@ -171,8 +187,7 @@ static void domark(int sig)
 }
 
 #define BUFSIZE 1023
-static void serveConnection (int conn) __attribute__ ((noreturn));
-static void serveConnection (int conn)
+static int serveConnection (int conn)
 {
 	char   buf[ BUFSIZE + 1 ];
 	int    n_read;
@@ -210,7 +225,7 @@ static void serveConnection (int conn)
 		/* Now log it */
 		logMessage (pri, line);
 	}
-	exit (0);
+	return (0);
 }
 
 static void doSyslogd (void) __attribute__ ((noreturn));
@@ -307,8 +322,8 @@ static void doSyslogd (void)
 
 static void klogd_signal(int sig)
 {
-	ksyslog(7, NULL, 0);
-	ksyslog(0, 0, 0);
+	klogctl(7, NULL, 0);
+	klogctl(0, 0, 0);
 	logMessage(0, "Kernel log daemon exiting.");
 	exit(TRUE);
 }
@@ -328,12 +343,12 @@ static void doKlogd (void)
 	logMessage(0, "klogd started: "
 			   "BusyBox v" BB_VER " (" BB_BT ")");
 
-	ksyslog(1, NULL, 0);
+	klogctl(1, NULL, 0);
 
 	while (1) {
 		/* Use kernel syscalls */
 		memset(log_buffer, '\0', sizeof(log_buffer));
-		if (ksyslog(2, log_buffer, sizeof(log_buffer)) < 0) {
+		if (klogctl(2, log_buffer, sizeof(log_buffer)) < 0) {
 			char message[80];
 
 			if (errno == EINTR)
@@ -464,7 +479,7 @@ extern int syslogd_main(int argc, char **argv)
 		doSyslogd();
 	}
 
-	exit(TRUE);
+	return(TRUE);
 }
 
 /*
-- 
cgit v1.2.3-55-g6feb