This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 469c03907b Update powerpc-nofpu libm-test-ulps. new 299210c1fa nss_files: Consolidate file opening in __nss_files_fopen new 23ed36735a nss_compat: Do not use mmap to read database files (bug 26258) new e9b2340998 nss_files: Consolidate line parse declarations in <nss_files.h> new 9980bf0b30 nss_files: Use generic result pointer in parse_line new d4b4586315 libio: Add fseterr_unlocked for internal use new bdee910e88 nss: Add __nss_fgetent_r new 4f62a21d0e grp: Implement fgetgrent_r using __nss_fgetent_r new 2add4235ef gshadow: Implement fgetsgent_r using __nss_fgetent_r (bug 20338) new ee1c062be0 pwd: Implement fgetpwent_r using __nss_fgetent_r new 00bc6830e3 shadow: Implement fgetspent_r using __nss_fgetent_r new ec2f1fddf2 libio: Remove __libc_readline_unlocked
The 11 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: grp/fgetgrent_r.c | 54 +---- gshadow/Makefile | 2 +- gshadow/fgetsgent_r.c | 41 +--- gshadow/tst-fgetsgent_r.c | 192 +++++++++++++++++ include/grp.h | 6 - include/gshadow.h | 6 - include/netdb.h | 13 -- include/netinet/ether.h | 6 - include/nss_files.h | 84 ++++++++ include/pwd.h | 6 - include/rpc/netdb.h | 6 - include/shadow.h | 6 - include/stdio.h | 20 +- libio/Makefile | 4 +- libio/Versions | 1 - libio/readline.c | 170 --------------- libio/tst-readline.c | 237 --------------------- nss/Makefile | 4 +- nss/Versions | 1 + nss/nss_compat/compat-grp.c | 6 +- nss/nss_compat/compat-initgroups.c | 6 +- nss/nss_compat/compat-pwd.c | 6 +- nss/nss_compat/compat-spwd.c | 6 +- nss/nss_fgetent_r.c | 55 +++++ nss/nss_files/files-XXX.c | 82 +++---- nss/nss_files/files-alias.c | 5 +- nss/nss_files/files-initgroups.c | 6 +- nss/nss_files/files-netgrp.c | 5 +- nss/nss_files/files-parse.c | 6 +- .../mod-cache-ppc.c => nss/nss_files_fopen.c | 40 ++-- .../nss_parse_line_result.c | 34 +-- nss/nss_readline.c | 99 +++++++++ pwd/fgetpwent_r.c | 43 +--- shadow/fgetspent_r.c | 43 +--- 34 files changed, 558 insertions(+), 743 deletions(-) create mode 100644 gshadow/tst-fgetsgent_r.c create mode 100644 include/nss_files.h delete mode 100644 libio/readline.c delete mode 100644 libio/tst-readline.c create mode 100644 nss/nss_fgetent_r.c copy sysdeps/powerpc/mod-cache-ppc.c => nss/nss_files_fopen.c (53%) copy nptl/pthread_attr_getsigmask.c => nss/nss_parse_line_result.c (57%) create mode 100644 nss/nss_readline.c