diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-03-19 12:08:00 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-03-19 12:08:00 +0000 |
| commit | 8cc7a57e5e5d28782f48a38cf96875a51cd37294 (patch) | |
| tree | 8bdcee3152072684789342bc920db40d486189f9 /usr.sbin/sysinstall/options.c | |
| parent | 6b6125cd508956aef69c36c41ae0ce93a6309aa2 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall/options.c')
| -rw-r--r-- | usr.sbin/sysinstall/options.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sysinstall/options.c b/usr.sbin/sysinstall/options.c index c9c099afe766..9584881dca80 100644 --- a/usr.sbin/sysinstall/options.c +++ b/usr.sbin/sysinstall/options.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated for what's essentially a complete rewrite. * - * $Id: options.c,v 1.26 1995/11/03 12:02:44 jkh Exp $ + * $Id: options.c,v 1.27 1995/11/06 12:49:25 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -52,7 +52,7 @@ varCheck(Option opt) if (opt.aux) cp = variable_get((char *)opt.aux); if (!cp) - return "<not set>"; + return "<default setting>"; return cp; } @@ -60,7 +60,7 @@ varCheck(Option opt) static char * resetLogo(char *str) { - return "[WHAP!]"; + return "[RESET!]"; } static char * @@ -97,7 +97,7 @@ mediaCheck(Option opt) return "<unknown>"; } } - return "<unset>"; + return "<not yet set>"; } #define TAPE_PROMPT "Please enter the tape block size in 512 byte blocks:" |
