This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/17665] Excess declarations in unistd.h for XPG3/XPG4


https://sourceware.org/bugzilla/show_bug.cgi?id=17665

--- Comment #2 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  266865c0e7b79d4196e2cc393693463f03c90bd8 (commit)
      from  84e5e75640afe10758ea647e4704e9f66dc82df4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=266865c0e7b79d4196e2cc393693463f03c90bd8

commit 266865c0e7b79d4196e2cc393693463f03c90bd8
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue Dec 2 21:32:48 2014 +0000

    Remove excess declarations from unistd.h for XPG3/XPG4 (bug 17665).

    For XPG3/XPG4 (defined __USE_XOPEN && !defined __USE_UNIX98), unistd.h
    declares many functions that should only be declared for __USE_MISC
    (none of them are in XPG3/XPG4): sethostname sethostid getdomainname
    setdomainname vhangup revoke profil acct getusershell endusershell
    setusershell daemon.  The whole block with the [__USE_MISC ||
    (__USE_XOPEN && !__USE_UNIX98)] conditional contains only functions
    that are not in XPG3/XPG4, so this patch simply changes the
    conditional.

    Tested for x86_64 (testsuite, and that installed stripped shared
    libraries are unchanged by this patch).

        [BZ #17665]
        * posix/unistd.h [__USE_MISC || (__USE_XOPEN && !__USE_UNIX98)]:
        Change conditional to [__USE_MISC].

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    4 ++++
 NEWS           |    2 +-
 posix/unistd.h |    4 ++--
 3 files changed, 7 insertions(+), 3 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]