about summary refs log tree commit diff
path: root/misc/bits
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-09-18 23:38:23 +0000
committerJakub Jelinek <jakub@redhat.com>2007-09-18 23:38:23 +0000
commitddf51ecb5f6ca05cc62b6ed8956d6a20cc74dbdb (patch)
treea1a3e8741efda74750188fa287af526ea9e6c4f1 /misc/bits
parent76c0bea7a329ca94035de1801be77e24beecc1fd (diff)
downloadglibc-ddf51ecb5f6ca05cc62b6ed8956d6a20cc74dbdb.tar.gz
glibc-ddf51ecb5f6ca05cc62b6ed8956d6a20cc74dbdb.tar.xz
glibc-ddf51ecb5f6ca05cc62b6ed8956d6a20cc74dbdb.zip
* misc/bits/syslog.h (syslog): Remove extraneous argument from
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.
Diffstat (limited to 'misc/bits')
-rw-r--r--misc/bits/syslog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/bits/syslog.h b/misc/bits/syslog.h
index f8c81dd9e4..853b30c84a 100644
--- a/misc/bits/syslog.h
+++ b/misc/bits/syslog.h
@@ -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, ...) \