diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-11-19 00:18:13 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-11-19 00:18:13 +0000 |
commit | 3115c839ed6794e4112ed74f768b7ab5542693b5 (patch) | |
tree | 7b09f21065751535d27bd6e14ca56a34f651dda2 /debug/vsnprintf_chk.c | |
parent | 1b7007d267c8d84cb6a1a4ac71cff32a92c1fc01 (diff) | |
download | glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.tar glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.tar.gz glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.tar.bz2 glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.zip |
Updated to fedora-glibc-20041119T0003
Diffstat (limited to 'debug/vsnprintf_chk.c')
-rw-r--r-- | debug/vsnprintf_chk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/vsnprintf_chk.c b/debug/vsnprintf_chk.c index 850cd5af5a..a0fd4ebfdc 100644 --- a/debug/vsnprintf_chk.c +++ b/debug/vsnprintf_chk.c @@ -58,7 +58,7 @@ __vsnprintf_chk (char *s, size_t maxlen, int flags, size_t slen, /* For flags > 0 (i.e. __USE_FORTIFY_LEVEL > 1) request that %n can only come from read-only format strings. */ if (flags > 0) - sf.f._sbf._f._flags2 |= _IO_FLAGS2_CHECK_PERCENT_N; + sf.f._sbf._f._flags2 |= _IO_FLAGS2_FORTIFY; _IO_str_init_static_internal (&sf.f, s, maxlen - 1, s); ret = INTUSE(_IO_vfprintf) ((_IO_FILE *) &sf.f._sbf, format, args); |