From 1eb8bf804937bea53f5e8cfa2f84d256373cdb64 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 27 Jul 2015 23:43:09 -0400 Subject: [PATCH] pwd.h: revert __nonnull markings on putpwent [BZ #18641] This function actually checks for NULL arguments and the API has been tenatively documented as using EINVAL in that case. We can debate leaving it this way, but it should be done after the pending release. --- ChangeLog | 5 +++++ pwd/pwd.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0498847a52..cf1efcce19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-07-27 Mike Frysinger + + [BZ #18641] + * pwd/pwd.h (putpwent): Delete __nonnull markings. + 2015-07-27 Andreas Schwab * conform/conformtest.pl (checknamespace): Filter out string diff --git a/pwd/pwd.h b/pwd/pwd.h index fcfb2ab0e7..70a051deb1 100644 --- a/pwd/pwd.h +++ b/pwd/pwd.h @@ -100,7 +100,7 @@ extern struct passwd *fgetpwent (FILE *__stream) __nonnull ((1)); or due to the implementation it is a cancellation point and therefore not marked with __THROW. */ extern int putpwent (const struct passwd *__restrict __p, - FILE *__restrict __f) __nonnull ((1, 2)); + FILE *__restrict __f); #endif /* Search for an entry with a matching user ID. -- 2.11.4.GIT