diff options
author | jkh <jkh@FreeBSD.org> | 2000-12-16 05:36:10 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-12-16 05:36:10 +0000 |
commit | fd2808ffad45d755f032b108f95aae2483767e42 (patch) | |
tree | eeab9cf1f55e4aa0ae136b20cf2076b24d6f2072 /usr.sbin/sade | |
parent | 6646c6c9a4e116da25af287cabc02a469404d154 (diff) | |
download | FreeBSD-src-fd2808ffad45d755f032b108f95aae2483767e42.zip FreeBSD-src-fd2808ffad45d755f032b108f95aae2483767e42.tar.gz |
Fix an informational message a little and properly check status of a yes/no
question which I bollicked up in my previous commit.
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index 14a0776..8a116dc 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -603,7 +603,7 @@ nodisks: #endif dialog_clear_norefresh(); - if (!msgNoYes("Does this system have a USB mouse attached to it?")) + if (msgNoYes("Does this system have a USB mouse attached to it?")) dmenuOpenSimple(&MenuMouse, FALSE); /* Now would be a good time to checkpoint the configuration data */ |