From dc825f85f4795fc45f67eb27708d9adcc72c9b40 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 28 Jan 1996 22:47:31 +0000 Subject: Sun Jan 28 17:25:38 1996 Roland McGrath * setjmp/setjmp.h (jmp_buf): Give a tag in the struct defn, to make C++ happy. * alpha/jmp_buf.h: Likewise. * m68k/jmp_buf.h: Likewise. * mips/jmp_buf.h: Likewise. * sparc/jmp_buf.h: Likewise. * vax/jmp_buf.h: Likewise. Sun Jan 28 17:25:38 1996 Roland McGrath * setjmp/setjmp.h (jmp_buf): Give a tag in the struct defn, to make C++ happy. * alpha/jmp_buf.h: Likewise. * m68k/jmp_buf.h: Likewise. * mips/jmp_buf.h: Likewise. * sparc/jmp_buf.h: Likewise. * vax/jmp_buf.h: Likewise. * sysdeps/generic/memmem.c: Fix return value in case where NEEDLE_LEN==0. * hurd/hurdlookup.c (__file_name_lookup_under, __file_name_lookup): Restrict mode with umask. * sysdeps/mach/hurd/xmknod.c: Restrict mode with umask. * sysdeps/mach/hurd/mkdir.c: Restrict mode with umask. --- hurd/hurdlookup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hurd/hurdlookup.c') diff --git a/hurd/hurdlookup.c b/hurd/hurdlookup.c index 05ed03833c..227f20e274 100644 --- a/hurd/hurdlookup.c +++ b/hurd/hurdlookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -352,7 +352,7 @@ __file_name_lookup (const char *file_name, int flags, mode_t mode) file_t result; err = __hurd_file_name_lookup (&_hurd_ports_use, &__getdport, - file_name, flags, mode, + file_name, flags, mode & ~_hurd_umask, &result); return err ? (__hurd_fail (err), MACH_PORT_NULL) : result; @@ -388,7 +388,7 @@ __file_name_lookup_under (file_t startdir, } err = __hurd_file_name_lookup (&use_init_port, &__getdport, - file_name, flags, mode, + file_name, flags, mode & ~_hurd_umask, &result); return err ? (__hurd_fail (err), MACH_PORT_NULL) : result; -- cgit v1.2.3