diff options
author | jkh <jkh@FreeBSD.org> | 1994-11-13 04:20:23 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-11-13 04:20:23 +0000 |
commit | 7b9ea7d74396beef8e836e96faa62cbb933f4d2c (patch) | |
tree | 2b7e6b9422ba0423245e70053d642f77c04708d7 | |
parent | 715f0a01b59940fefeffd87844e3a86b9af51d43 (diff) | |
download | FreeBSD-src-7b9ea7d74396beef8e836e96faa62cbb933f4d2c.zip FreeBSD-src-7b9ea7d74396beef8e836e96faa62cbb933f4d2c.tar.gz |
I buggered the last commit. Make sysinstall work again (^$&*!! missing
comma!).
-rw-r--r-- | sbin/sysinstall/stage0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/sysinstall/stage0.c b/sbin/sysinstall/stage0.c index 0ecde98..1805996 100644 --- a/sbin/sysinstall/stage0.c +++ b/sbin/sysinstall/stage0.c @@ -30,7 +30,7 @@ static unsigned char *welcome[] = { "2. Release Notes", "Read the 2.0 Release Notes (recommended).", "3. Troubleshooting", - "Read this if you're having trouble getting installed." + "Read this in case of trouble.", "4. COPYRIGHT", "Read FreeBSD Copyright Information.", "5. Install", @@ -46,7 +46,7 @@ stage0() { evil_goto: if (dialog_menu("Welcome to FreeBSD!", - "Use ALT-F2 and ALT-F1 to toggle between debugging\ninformation screen (ALT-F2) or this dialog screen (ALT-F1)\n\nPlease select one of the following options:", 15, 75, 7, 7, welcome, selection)) + "Use ALT-F2 and ALT-F1 to toggle between debugging\ninformation screen (ALT-F2) or this dialog screen (ALT-F1)\n\nPlease select one of the following options:", 18, 75, 7, 7, welcome, selection)) ExitSysinstall(); switch (atoi(selection)) { |