mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
Update.
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:
parent
cc9b1d461e
commit
0163d97b8c
2 changed files with 11 additions and 1 deletions
|
@ -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>
|
1998-10-06 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||||
|
|
||||||
* sysdeps/m68k/dl-machine.h (RTLD_START): Fix clearing startup
|
* sysdeps/m68k/dl-machine.h (RTLD_START): Fix clearing startup
|
||||||
|
|
|
@ -2190,8 +2190,9 @@ without changing it permanently:
|
||||||
mode_t
|
mode_t
|
||||||
read_umask (void)
|
read_umask (void)
|
||||||
@{
|
@{
|
||||||
mask = umask (0);
|
mode_t mask = umask (0);
|
||||||
umask (mask);
|
umask (mask);
|
||||||
|
return mask;
|
||||||
@}
|
@}
|
||||||
@end smallexample
|
@end smallexample
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue