mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Hurd: Fix file_name_lookup_at error case return value.
This commit is contained in:
parent
85071980b3
commit
67481400c5
@ -1,3 +1,7 @@
|
||||
2010-04-24 Emilio Pozuelo Monfort <pochu27@gmail.com>
|
||||
|
||||
* hurd/lookup-at.c (__file_name_lookup_at): Fix error return value.
|
||||
|
||||
2010-04-22 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* po/vi.po: Update from translation team.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Lookup helper function for Hurd implementation of *at functions.
|
||||
Copyright (C) 2006 Free Software Foundation, Inc.
|
||||
Copyright (C) 2006,2010 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
|
||||
@ -33,7 +33,7 @@ __file_name_lookup_at (int fd, int at_flags,
|
||||
flags |= (at_flags & AT_SYMLINK_NOFOLLOW) ? O_NOLINK : 0;
|
||||
at_flags &= ~AT_SYMLINK_NOFOLLOW;
|
||||
if (at_flags != 0)
|
||||
return __hurd_fail (EINVAL);
|
||||
return (__hurd_fail (EINVAL), MACH_PORT_NULL);
|
||||
|
||||
if (fd == AT_FDCWD || file_name[0] == '/')
|
||||
return __file_name_lookup (file_name, flags, mode);
|
||||
|
Loading…
Reference in New Issue
Block a user