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.
This commit is contained in:
Ulrich Drepper 1998-10-07 11:00:44 +00:00
parent cc9b1d461e
commit 0163d97b8c
2 changed files with 11 additions and 1 deletions

View File

@ -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

View 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