From: Ulrich Drepper Date: Wed, 30 Jun 1999 16:58:13 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/pre-glibc-2_1_3~689 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16848c985d9e4d6f8ca7a9c2c4ac711ef63835ec;p=platform%2Fupstream%2Fglibc.git Update. * pwd/getpw.c: Add warning since no buffer size is given and therefore no overrun tests are possible. 1999-06-30 Andreas Jaeger * pwd/pwd.h: Add getpw prototype declaration. 1999-06-30 Ulrich Drepper --- diff --git a/ChangeLog b/ChangeLog index 38e6508..468a2ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,14 @@ 1999-06-30 Ulrich Drepper + * pwd/getpw.c: Add warning since no buffer size is given and + therefore no overrun tests are possible. + +1999-06-30 Andreas Jaeger + + * pwd/pwd.h: Add getpw prototype declaration. + +1999-06-30 Ulrich Drepper + * wcsmbs/wcsrchr.c: Fix handling of L'\0' parameter. * wcsmbs/wcschr.c: Likewise. diff --git a/pwd/getpw.c b/pwd/getpw.c index 8bfb02e..e291769 100644 --- a/pwd/getpw.c +++ b/pwd/getpw.c @@ -58,3 +58,5 @@ __getpw (uid, buf) return 0; } weak_alias (__getpw, getpw) + +link_warning (getpw, "the `getpw' function is dangerous and should not be used.")