diff options
| author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2000-01-11 13:40:20 +0000 |
|---|---|---|
| committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2000-01-11 13:40:20 +0000 |
| commit | 3c47fb79228ffdb32ee27e5c00f55deb2419da55 (patch) | |
| tree | 35563892a9eef145c8396d90273a4524fa27167e | |
| parent | 7642cc829e3b89e15542e202c2890b48b4093345 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/pkg_install/delete/perform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/delete/perform.c b/usr.sbin/pkg_install/delete/perform.c index 12de6b3a665a..11e96bef1420 100644 --- a/usr.sbin/pkg_install/delete/perform.c +++ b/usr.sbin/pkg_install/delete/perform.c @@ -169,7 +169,7 @@ pkg_do(char *pkg) if (chdir(home) == FAIL) { cleanup(0); - errx(2, "unable to return to working directory %s!"); + errx(2, "unable to return to working directory %s!", home); } if (!Fake) { @@ -200,7 +200,7 @@ pkg_do(char *pkg) if (chdir(home) == FAIL) { cleanup(0); - errx(2, "unable to return to working directory %s!"); + errx(2, "unable to return to working directory %s!", home); } if (!Fake) { |
