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 d776b9d..097fe63 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 302010f..518b9e2 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