diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-02-23 15:07:42 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-02-23 15:07:42 +0000 |
commit | 01ba62d67b3defea4ffe6a2701883df949342260 (patch) | |
tree | 03cdd602f05dbafdf244b041e1d787ae152dc54b /release | |
parent | cc95b0e8b1a4280db06c6a5e904aedceb9f74f56 (diff) |
YAMFC
Notes
Notes:
svn path=/stable/2.2/; revision=23051
Diffstat (limited to 'release')
-rw-r--r-- | release/sysinstall/config.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/release/sysinstall/config.c b/release/sysinstall/config.c index 3c3b6df5910f..0e571ccf42ae 100644 --- a/release/sysinstall/config.c +++ b/release/sysinstall/config.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: config.c,v 1.51.2.25 1997/02/16 23:36:43 jkh Exp $ + * $Id: config.c,v 1.51.2.26 1997/02/17 13:42:53 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -369,10 +369,8 @@ configSysconfig(char *config) int i, nlines; nlines = readConfig(config, lines, MAX_LINES); - if (nlines == -1) { - msgConfirm("Unable to open %s file! This is bad!", config); + if (nlines == -1) return; - } /* Now do variable substitutions */ for (v = VarHead; v; v = v->next) { |