patches/glibc/ports-2.12.1/650-syslog.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Thu Dec 27 12:45:22 2012 +0100 (2012-12-27)
changeset 3152 b286c7993be5
permissions -rw-r--r--
scripts/addToolsVersion: properly handle .in vs. .in.2

While most components have their version in the .in file, some
have it in the .in.2 (eg. elf2flt).

Currently, to handle this case, we indiscriminately munge both files,
but this is wrong: in the elf2flt case, if we add a binutils version,
we do not want it to be added to elf2flt, and conversely.

So, for each tool, we need to explicitly know what file to munge.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
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
 	}