summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/df.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/df.c b/src/df.c
index 569a43fb4..fdeb14c8c 100644
--- a/src/df.c
+++ b/src/df.c
@@ -492,8 +492,9 @@ done:
/* Restore the original cwd. */
{
int save_errno = errno;
- if (restore_cwd (&cwd, 0, mp))
- exit (EXIT_FAILURE); /* We're scrod. */
+ if (restore_cwd (&cwd))
+ error (EXIT_FAILURE, errno,
+ _("failed to return to initial working directory"));
free_cwd (&cwd);
errno = save_errno;
}