diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-01 19:08:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-01 19:08:43 +0000 |
commit | 6f2342912ef030cac60851b5e5ee4561d2038bc3 (patch) | |
tree | c3d8e97e6a4de5a9cda62e521a5e19172423f21f /libexec/identd/identd.c | |
parent | f845857b83e80683aadccf3e21c66dd9ff23ef69 (diff) |
remove config trash
Diffstat (limited to 'libexec/identd/identd.c')
-rw-r--r-- | libexec/identd/identd.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/libexec/identd/identd.c b/libexec/identd/identd.c index 3a0ea8ed9fd..cace2123c48 100644 --- a/libexec/identd/identd.c +++ b/libexec/identd/identd.c @@ -1,5 +1,5 @@ /* -** $Id: identd.c,v 1.5 1997/07/29 07:49:31 deraadt Exp $ +** $Id: identd.c,v 1.6 1997/08/01 19:08:42 deraadt Exp $ ** ** identd.c A TCP/IP link identification protocol server ** @@ -223,7 +223,6 @@ int main(argc,argv) char *bind_address = NULL; int set_uid = 0; int set_gid = 0; - int inhibit_default_config = 0; int opt_count = 0; /* Count of option flags */ #ifdef __convex__ @@ -231,20 +230,6 @@ int main(argc,argv) #endif /* - ** Prescan the arguments for "-f<config-file>" switches - */ - inhibit_default_config = 0; - for (i = 1; i < argc && argv[i][0] == '-'; i++) - if (argv[i][1] == 'f') - inhibit_default_config = 1; - - /* - ** Parse the default config file - if it exists - */ - if (!inhibit_default_config) - parse_config(NULL, 1); - - /* ** Parse the command line arguments */ for (i = 1; i < argc && argv[i][0] == '-'; i++) { |