patches/glibc/ports-2.12.1/650-syslog.patch
author Titus von Boxberg <titus@v9g.de>
Mon Aug 22 09:38:19 2011 +0200 (2011-08-22)
branch1.12
changeset 2638 18d05b18e242
permissions -rw-r--r--
libc/uClibc: portability fixes to install_headers

Add patch files for uClibc-0.9.30:
extra/scripts/install_headers.sh: find must be called with path.
extra/scripts/unifdef.c: getline is declared in <stdio.h>, use different name.

Reported-by: "Guylhem Aznar" <crossgcc@guylhem.net>
Reported-by: "Titus von Boxberg" <titus@v9g.de>
Signed-off-by: "Titus von Boxberg" <titus@v9g.de>
(transplanted from b745004e1d29921a86b73694d912f1e1277db3e1)
yann@2437
     1
diff -durN glibc-cvs-2.9.orig/misc/syslog.c glibc-cvs-2.9/misc/syslog.c
yann@2437
     2
--- glibc-cvs-2.9.orig/misc/syslog.c	2009-06-01 10:16:50.000000000 +0200
yann@2437
     3
+++ glibc-cvs-2.9/misc/syslog.c	2009-06-01 10:17:20.000000000 +0200
yann@2437
     4
@@ -152,7 +152,7 @@
yann@2437
     5
 #define	INTERNALLOG	LOG_ERR|LOG_CONS|LOG_PERROR|LOG_PID
yann@2437
     6
 	/* Check for invalid bits. */
yann@2437
     7
 	if (pri & ~(LOG_PRIMASK|LOG_FACMASK)) {
yann@2437
     8
-		syslog(INTERNALLOG,
yann@2437
     9
+		__syslog(INTERNALLOG,
yann@2437
    10
 		    "syslog: unknown facility/priority: %x", pri);
yann@2437
    11
 		pri &= LOG_PRIMASK|LOG_FACMASK;
yann@2437
    12
 	}