From 0163d97b8c55bc320c7d867d02ca37badabd1f7c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 7 Oct 1998 11:00:44 +0000 Subject: Update. 1998-10-06 Andreas Schwab * manual/filesys.texi (Setting Permissions): Fix example for reading umask. 1998-10-07 Andreas Schwab * elf/sprof.c (load_profdata): Fix typo in error message. --- manual/filesys.texi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'manual') diff --git a/manual/filesys.texi b/manual/filesys.texi index 302010f78f..518b9e2f5a 100644 --- a/manual/filesys.texi +++ b/manual/filesys.texi @@ -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 -- cgit 1.4.1