From: Ulrich Drepper Date: Wed, 7 Oct 1998 11:00:44 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_98~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0163d97b8c55bc320c7d867d02ca37badabd1f7c;p=thirdparty%2Fglibc.git Update. 1998-10-06 Andreas Schwab * manual/filesys.texi (Setting Permissions): Fix example for reading umask. 1998-10-07 Andreas Schwab * elf/sprof.c (load_profdata): Fix typo in error message. --- diff --git a/ChangeLog b/ChangeLog index d776b9dd400..097fe634cfe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +1998-10-06 Andreas Schwab + + * manual/filesys.texi (Setting Permissions): Fix example for + reading umask. + +1998-10-07 Andreas Schwab + + * elf/sprof.c (load_profdata): Fix typo in error message. + 1998-10-06 Andreas Schwab * sysdeps/m68k/dl-machine.h (RTLD_START): Fix clearing startup diff --git a/manual/filesys.texi b/manual/filesys.texi index 302010f78f7..518b9e2f5a7 100644 --- a/manual/filesys.texi +++ b/manual/filesys.texi @@ -2190,8 +2190,9 @@ without changing it permanently: mode_t read_umask (void) @{ - mask = umask (0); + mode_t mask = umask (0); umask (mask); + return mask; @} @end smallexample