mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-04 15:33:34 +08:00
Reflect s/_die/_fail/ renaming.
This commit is contained in:
parent
f23e1c18a8
commit
b95fca684c
12
lib/openat.c
12
lib/openat.c
@ -65,7 +65,7 @@ rpl_openat (int fd, char const *file, int flags, ...)
|
||||
return open (file, flags, mode);
|
||||
|
||||
if (save_cwd (&saved_cwd) != 0)
|
||||
openat_save_die (errno);
|
||||
openat_save_fail (errno);
|
||||
|
||||
if (fchdir (fd) != 0)
|
||||
{
|
||||
@ -79,7 +79,7 @@ rpl_openat (int fd, char const *file, int flags, ...)
|
||||
saved_errno = errno;
|
||||
|
||||
if (restore_cwd (&saved_cwd) != 0)
|
||||
openat_restore_die (errno);
|
||||
openat_restore_fail (errno);
|
||||
|
||||
free_cwd (&saved_cwd);
|
||||
|
||||
@ -105,7 +105,7 @@ fdopendir (int fd)
|
||||
return opendir (".");
|
||||
|
||||
if (save_cwd (&saved_cwd) != 0)
|
||||
openat_save_die (errno);
|
||||
openat_save_fail (errno);
|
||||
|
||||
if (fchdir (fd) != 0)
|
||||
{
|
||||
@ -119,7 +119,7 @@ fdopendir (int fd)
|
||||
saved_errno = errno;
|
||||
|
||||
if (restore_cwd (&saved_cwd) != 0)
|
||||
openat_restore_die (errno);
|
||||
openat_restore_fail (errno);
|
||||
|
||||
free_cwd (&saved_cwd);
|
||||
|
||||
@ -147,7 +147,7 @@ fstatat (int fd, char const *file, struct stat *st, int flag)
|
||||
: stat (file, st));
|
||||
|
||||
if (save_cwd (&saved_cwd) != 0)
|
||||
openat_save_die (errno);
|
||||
openat_save_fail (errno);
|
||||
|
||||
if (fchdir (fd) != 0)
|
||||
{
|
||||
@ -163,7 +163,7 @@ fstatat (int fd, char const *file, struct stat *st, int flag)
|
||||
saved_errno = errno;
|
||||
|
||||
if (restore_cwd (&saved_cwd) != 0)
|
||||
openat_restore_die (errno);
|
||||
openat_restore_fail (errno);
|
||||
|
||||
free_cwd (&saved_cwd);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user