]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 7 Oct 1998 11:00:44 +0000 (11:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 7 Oct 1998 11:00:44 +0000 (11:00 +0000)
1998-10-06  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

* manual/filesys.texi (Setting Permissions): Fix example for
reading umask.

1998-10-07  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

* elf/sprof.c (load_profdata): Fix typo in error message.

ChangeLog
manual/filesys.texi

index d776b9dd400e188fdb8ed5c0eeb986e894f5e8fd..097fe634cfe41240acc30177887551ebc65492c2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+1998-10-06  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
+
+       * manual/filesys.texi (Setting Permissions): Fix example for
+       reading umask.
+
+1998-10-07  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
+
+       * elf/sprof.c (load_profdata): Fix typo in error message.
+
 1998-10-06  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
 
        * sysdeps/m68k/dl-machine.h (RTLD_START): Fix clearing startup
index 302010f78f74f7b7072eebcfb623410ba4448b93..518b9e2f5a7ca8e2a2eb7cfdd6b9b5a121f5f268 100644 (file)
@@ -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