patches/glibc/ports-2.12.1/650-syslog.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Sep 09 14:15:10 2011 +0200 (2011-09-09)
branch1.12
changeset 2656 9bc6d5555cac
permissions -rw-r--r--
debug/gdb: update the version strings

Almost all versions have been renamed, but the gdb folks did not
setup legacy symlinks.

For more information, see this message:
http://sourceware.org/ml/gdb/2011-09/msg00002.html

Reported-by: ManuelStahl <manuel.stahl@iis.fraunhofer.de>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 32209f462bbb35f3e3c7b260dc643e1183bdd710)
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
 	}