diff options
author | jkh <jkh@FreeBSD.org> | 1996-06-25 04:28:23 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-06-25 04:28:23 +0000 |
commit | f51935dac31862e0b97062ed6ed4da41e3ccdafa (patch) | |
tree | 68641fa820ec250fb3627cce1044c96321baa9f6 /usr.sbin/sade/config.c | |
parent | 391bef8d07b5fc449058b0545eeae9b415497e02 (diff) | |
download | FreeBSD-src-f51935dac31862e0b97062ed6ed4da41e3ccdafa.zip FreeBSD-src-f51935dac31862e0b97062ed6ed4da41e3ccdafa.tar.gz |
Handle tabs in INDEX files.
Display full, un-truncated version of description in status line.
Diffstat (limited to 'usr.sbin/sade/config.c')
-rw-r--r-- | usr.sbin/sade/config.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/sade/config.c b/usr.sbin/sade/config.c index 2c82233..870491f 100644 --- a/usr.sbin/sade/config.c +++ b/usr.sbin/sade/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.36 1996/06/13 17:36:26 jkh Exp $ + * $Id: config.c,v 1.37 1996/06/15 17:58:51 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -451,7 +451,7 @@ configPackages(dialogMenuItem *self) "(or path to media) and try again. If your local site does not\n" "carry the packages collection, then we recommend either a CD\n" "distribution or the master distribution on ftp.freebsd.org."); - return DITEM_FAILURE | DITEM_RESTORE; + return DITEM_FAILURE; } msgNotify("Got INDEX successfully, now building packages menu.."); index_init(&top, &plist); @@ -505,6 +505,7 @@ configPorts(dialogMenuItem *self) { char *cp, *dist = NULL; /* Shut up compiler */ + dialog_clear(); if (!variable_get(VAR_PORTS_PATH)) variable_set2(VAR_PORTS_PATH, dist = "/cdrom/ports"); while (!directory_exists(dist)) { |