diff options
author | jkh <jkh@FreeBSD.org> | 1999-12-19 04:06:46 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-12-19 04:06:46 +0000 |
commit | a9a9f9ac90e0209132d7bd0d7aa83eab5d17ba93 (patch) | |
tree | b079411ecd0f6320135324fdc95d1a897ba8a939 /usr.sbin/sysinstall | |
parent | 99a0254a52c686a564d742d546a4d41be85e07b3 (diff) | |
download | FreeBSD-src-a9a9f9ac90e0209132d7bd0d7aa83eab5d17ba93.zip FreeBSD-src-a9a9f9ac90e0209132d7bd0d7aa83eab5d17ba93.tar.gz |
Be paranoid about refreshing after an action.
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r-- | usr.sbin/sysinstall/options.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/options.c b/usr.sbin/sysinstall/options.c index 6113e12..4177abe 100644 --- a/usr.sbin/sysinstall/options.c +++ b/usr.sbin/sysinstall/options.c @@ -187,8 +187,7 @@ fire(Option opt) int (*cp)(char *) = opt.data, rcode; rcode = cp(NULL); - if (rcode & (DITEM_RECREATE | DITEM_RESTORE)) - status = 1; + status = 1; } else if (opt.type == OPT_IS_VAR) { if (opt.data) { |