From: Jim Meyering Date: Tue, 14 Jun 2005 09:44:54 +0000 (+0000) Subject: (openat_save_fail): Rename from openat_save_die. X-Git-Tag: CPPI-1_12~612 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f23e1c18a8f78bbac47df3299b6d1241fe00d7ff;p=thirdparty%2Fcoreutils.git (openat_save_fail): Rename from openat_save_die. (openat_restore_fail): Rename from openat_restore_die. --- diff --git a/lib/openat-die.c b/lib/openat-die.c index 7247ab2b78..f7cc15dbcd 100644 --- a/lib/openat-die.c +++ b/lib/openat-die.c @@ -30,20 +30,20 @@ #define N_(msgid) msgid void -openat_save_die (int errno) +openat_save_fail (int errno) { error (exit_failure, errno, _("unable to record current working directory")); /* The `noreturn' attribute cannot be applied to error, since it returns - when its first argument is 0. To help compilers understand the - xalloc_die does not return, call abort. Also, the abort is a + when its first argument is 0. To help compilers understand that this + function does not return, call abort. Also, the abort is a safety feature if exit_failure is 0 (which shouldn't happen). */ abort (); } void -openat_restore_die (int errno) +openat_restore_fail (int errno) { error (exit_failure, errno, _("failed to return to initial working directory"));