diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-24 18:52:47 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-24 18:52:47 +0000 |
commit | 50b850729be9602bdb93645f2567eb9796edab66 (patch) | |
tree | 3c7e365656193426b57265f83a37c6e2f01ca61c /usr.sbin/sade | |
parent | 15cca3b08a90a557a4cbe3be5a4b513df6e8852f (diff) | |
download | FreeBSD-src-50b850729be9602bdb93645f2567eb9796edab66.zip FreeBSD-src-50b850729be9602bdb93645f2567eb9796edab66.tar.gz |
Take out configSysconfig() until I get it written.
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/sade/config.c b/usr.sbin/sade/config.c index db73504..00a5998 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.3 1995/05/24 01:27:08 jkh Exp $ + * $Id: config.c,v 1.4 1995/05/24 09:00:08 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -190,6 +190,7 @@ configFstab(void) void configSysconfig(void) { +#if 0 FILE *fp; char *lines[5001]; /* Some big number we're not likely to ever reach - I'm being really lazy here, I know */ char line[256]; @@ -211,6 +212,7 @@ configSysconfig(void) for (i = 0; i < nlines; i++) { } } +#endif } int |