This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 72b8692d7e Y2038: make __tz_convert compatible with 64-bit-time new 349718d4d7 Add __vfscanf_internal and __vfwscanf_internal with flags ar [...] new b87eb3f8fe Use SCANF_ISOC99_A instead of _IO_FLAGS2_SCANF_STD. new d91798b31a Use SCANF_LDBL_IS_DBL instead of __ldbl_is_dbl. new 698fb75b9f Add __v*printf_internal with flags arguments new 124fc732c1 Add __vsyslog_internal, with same flags as __v*printf_internal. new 4e2f43f842 Use PRINTF_FORTIFY instead of _IO_FLAGS2_FORTIFY (bug 11319) new 35caceb145 Use PRINTF_LDBL_IS_DBL instead of __ldbl_is_dbl.
The 7 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 349 +++ argp/argp-fmtstream.c | 3 +- argp/argp-help.c | 4 +- argp/argp-namefrob.h | 2 - debug/Makefile | 2 +- debug/asprintf_chk.c | 20 +- debug/dprintf_chk.c | 20 +- debug/fprintf_chk.c | 20 +- debug/fwprintf_chk.c | 20 +- debug/obprintf_chk.c | 96 +- debug/printf_chk.c | 20 +- debug/snprintf_chk.c | 24 +- debug/sprintf_chk.c | 25 +- debug/swprintf_chk.c | 27 +- debug/vasprintf_chk.c | 68 +- debug/vdprintf_chk.c | 37 +- debug/vfprintf_chk.c | 21 +- debug/vfwprintf_chk.c | 21 +- .../tst-cet-legacy-3.c => debug/vobprintf_chk.c | 24 +- debug/vprintf_chk.c | 20 +- debug/vsnprintf_chk.c | 46 +- debug/vsprintf_chk.c | 69 +- debug/vswprintf_chk.c | 51 +- debug/vwprintf_chk.c | 21 +- debug/wprintf_chk.c | 21 +- hurd/vpprintf.c | 2 +- include/stdio.h | 8 - include/sys/syslog.h | 19 +- include/wchar.h | 12 - libio/fwprintf.c | 2 +- libio/iolibio.h | 8 - libio/iovdprintf.c | 13 +- libio/iovsprintf.c | 66 +- libio/iovsscanf.c | 12 +- libio/iovswscanf.c | 14 +- libio/libio.h | 8 - libio/libioP.h | 97 +- libio/obprintf.c | 19 +- libio/strfile.h | 33 +- libio/swprintf.c | 2 +- libio/swscanf.c | 10 +- libio/vasprintf.c | 20 +- libio/vscanf.c | 2 +- libio/vsnprintf.c | 16 +- libio/vswprintf.c | 16 +- libio/vwprintf.c | 2 +- libio/vwscanf.c | 2 +- libio/wprintf.c | 2 +- libio/wscanf.c | 2 +- misc/syslog.c | 36 +- stdio-common/Makefile | 10 +- stdio-common/Versions | 3 + stdio-common/asprintf.c | 6 +- stdio-common/dprintf.c | 5 +- stdio-common/fprintf.c | 2 +- stdio-common/fxprintf.c | 4 +- .../openat_nocancel.c => stdio-common/iovfscanf.c | 33 +- .../x86_64/ffsll.c => stdio-common/iovfwscanf.c | 34 +- stdio-common/isoc99_fscanf.c | 7 +- stdio-common/isoc99_scanf.c | 12 +- stdio-common/isoc99_sscanf.c | 8 +- stdio-common/isoc99_vfscanf.c | 9 +- stdio-common/isoc99_vscanf.c | 9 +- stdio-common/isoc99_vsscanf.c | 16 +- stdio-common/printf.c | 3 +- stdio-common/scanf.c | 2 +- stdio-common/snprintf.c | 4 +- stdio-common/sprintf.c | 4 +- stdio-common/sscanf.c | 12 +- stdio-common/tst-bz11319-fortify2.c | 1 + stdio-common/{tst-scanf-round.c => tst-bz11319.c} | 44 +- stdio-common/{vfprintf.c => vfprintf-internal.c} | 60 +- stdio-common/vfprintf.c | 2351 +-------------- stdio-common/{vfscanf.c => vfscanf-internal.c} | 42 +- stdio-common/vfscanf.c | 3042 +------------------- stdio-common/vfwprintf-internal.c | 2 + stdio-common/vfwprintf.c | 28 +- stdio-common/vfwscanf-internal.c | 2 + stdio-common/vfwscanf.c | 28 +- stdio-common/vprintf.c | 4 +- stdlib/strfrom-skeleton.c | 2 +- sysdeps/generic/math_ldbl_opt.h | 5 +- sysdeps/generic/stdio-lock.h | 7 - sysdeps/ieee754/ldbl-opt/Makefile | 2 +- sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h | 13 +- sysdeps/ieee754/ldbl-opt/nldbl-compat.c | 773 +++-- sysdeps/nptl/stdio-lock.h | 7 - wcsmbs/isoc99_fwscanf.c | 7 +- wcsmbs/isoc99_swscanf.c | 11 +- wcsmbs/isoc99_vfwscanf.c | 9 +- wcsmbs/isoc99_vswscanf.c | 15 +- wcsmbs/isoc99_vwscanf.c | 9 +- wcsmbs/isoc99_wscanf.c | 7 +- 93 files changed, 1379 insertions(+), 6729 deletions(-) copy sysdeps/x86/tst-cet-legacy-3.c => debug/vobprintf_chk.c (66%) copy sysdeps/unix/sysv/linux/openat_nocancel.c => stdio-common/iovfscanf.c (56%) copy sysdeps/x86_64/ffsll.c => stdio-common/iovfwscanf.c (56%) create mode 100644 stdio-common/tst-bz11319-fortify2.c copy stdio-common/{tst-scanf-round.c => tst-bz11319.c} (61%) copy stdio-common/{vfprintf.c => vfprintf-internal.c} (98%) copy stdio-common/{vfscanf.c => vfscanf-internal.c} (98%) create mode 100644 stdio-common/vfwprintf-internal.c create mode 100644 stdio-common/vfwscanf-internal.c