diff options
author | jkh <jkh@FreeBSD.org> | 1995-10-21 20:03:07 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-10-21 20:03:07 +0000 |
commit | 348c10ffc0da795de63ab2df916c9089b4d5060a (patch) | |
tree | 648c81cbaa9bbf211efa65be9bf701d382a79d46 | |
parent | 2f3f635ee848c555dd74d424053ca0722cbe8d77 (diff) | |
download | FreeBSD-src-348c10ffc0da795de63ab2df916c9089b4d5060a.zip FreeBSD-src-348c10ffc0da795de63ab2df916c9089b4d5060a.tar.gz |
Error message reform. Make an unnecessarily fatal error a warning.
-rw-r--r-- | release/sysinstall/package.c | 4 | ||||
-rw-r--r-- | usr.sbin/sysinstall/package.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/package.c b/release/sysinstall/package.c index 9c31004..f72813a 100644 --- a/release/sysinstall/package.c +++ b/release/sysinstall/package.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: package.c,v 1.6 1995/10/20 21:57:23 jkh Exp $ + * $Id: package.c,v 1.7 1995/10/20 22:36:06 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -103,7 +103,7 @@ package_extract(Device *dev, char *name) close(fd); } if (chdir(where) == -1) - msgFatal("Unable to get back to where I was before, Jojo!\n(That was: %s)\n", where); + msgFatal("Unable to get back to where I was before, Jojo! (That was: %s)", where); vsystem("rm -rf %s", pen); if (isDebug()) msgDebug("Nuked pen: %s\n", pen); diff --git a/usr.sbin/sysinstall/package.c b/usr.sbin/sysinstall/package.c index 9c31004..f72813a 100644 --- a/usr.sbin/sysinstall/package.c +++ b/usr.sbin/sysinstall/package.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: package.c,v 1.6 1995/10/20 21:57:23 jkh Exp $ + * $Id: package.c,v 1.7 1995/10/20 22:36:06 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -103,7 +103,7 @@ package_extract(Device *dev, char *name) close(fd); } if (chdir(where) == -1) - msgFatal("Unable to get back to where I was before, Jojo!\n(That was: %s)\n", where); + msgFatal("Unable to get back to where I was before, Jojo! (That was: %s)", where); vsystem("rm -rf %s", pen); if (isDebug()) msgDebug("Nuked pen: %s\n", pen); |