]> git.cworth.org Git - tar/blob - lib/openat-die.c
Imported Upstream version 1.21
[tar] / lib / openat-die.c
1 /* Report a save- or restore-cwd failure in our openat replacement and then exit.
2
3    Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #include <config.h>
19
20 #include "openat.h"
21
22 #include <stdlib.h>
23
24 #include "error.h"
25 #include "exitfail.h"
26
27 #include "gettext.h"
28 #define _(msgid) gettext (msgid)
29 #define N_(msgid) msgid
30
31 void
32 openat_save_fail (int errnum)
33 {
34   error (exit_failure, errnum,
35          _("unable to record current working directory"));
36
37   /* The `noreturn' attribute cannot be applied to error, since it returns
38      when its first argument is 0.  To help compilers understand that this
39      function does not return, call abort.  Also, the abort is a
40      safety feature if exit_failure is 0 (which shouldn't happen).  */
41   abort ();
42 }
43
44 void
45 openat_restore_fail (int errnum)
46 {
47   error (exit_failure, errnum,
48          _("failed to return to initial working directory"));
49
50   /* As above.  */
51   abort ();
52 }