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