diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | pwd/pwd.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2015-07-27 Mike Frysinger <vapier@gentoo.org> + + [BZ #18641] + * pwd/pwd.h (putpwent): Delete __nonnull markings. + 2015-07-27 Andreas Schwab <schwab@suse.de> * conform/conformtest.pl (checknamespace): Filter out string @@ -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. |