]> sourceware.org Git - glibc.git/commitdiff
* misc/bits/syslog.h (syslog): Remove extraneous argument from
authorJakub Jelinek <jakub@redhat.com>
Tue, 18 Sep 2007 23:38:23 +0000 (23:38 +0000)
committerJakub Jelinek <jakub@redhat.com>
Tue, 18 Sep 2007 23:38:23 +0000 (23:38 +0000)
the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
__syslog_chk.
2007-09-19  Jakub Jelinek  <jakub@redhat.com>

* misc/bits/syslog.h (syslog): Remove extraneous argument from
the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
__syslog_chk.

ChangeLog
misc/bits/syslog.h

index a7db139e7bf31057e94f5402e4183c21872d7075..3fe6844e75818f0805de8d22eb2eb937ad86d647 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-09-19  Jakub Jelinek  <jakub@redhat.com>
+
+       * misc/bits/syslog.h (syslog): Remove extraneous argument from
+       the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
+       __syslog_chk.
+
 2007-09-18  Jakub Jelinek  <jakub@redhat.com>
 
        * locale/programs/charmap-dir.c (charmap_aliases): Use %ms instead of
index f8c81dd9e485e65d0a73fac6b7cb0b53bd7a3ff4..853b30c84a3bb18f9993e5f42492dc8d3cd72f9b 100644 (file)
@@ -27,9 +27,9 @@ extern void __syslog_chk (int __pri, int __flag, __const char *__fmt, ...)
 
 #ifdef __va_arg_pack
 __extern_always_inline void
-syslog (int __pri, int __flag, __const char *__fmt, ...)
+syslog (int __pri, __const char *__fmt, ...)
 {
-  return __syslog_chk (__pri, __flag, __fmt, __va_arg_pack ());
+  return __syslog_chk (__pri, __USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ());
 }
 #elif !defined __cplusplus
 # define syslog(pri, ...) \
This page took 0.054357 seconds and 5 git commands to generate.