1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
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

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