From 612682354fa978d7b883028b3aace52a2882adca Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 19 Apr 2000 04:01:16 +0000 Subject: - got rid of the "passive" option - cleaned up the standard_sub_*() calls a lot (This used to be commit 2c2d95d77d3667eaa9252506a82b9054b0d0e01c) --- source3/smbd/server.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'source3/smbd/server.c') diff --git a/source3/smbd/server.c b/source3/smbd/server.c index cbcdad157a..a7baa9e327 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -512,7 +512,6 @@ static void usage(char *pname) printf("\t-D Become a daemon\n"); printf("\t-a Append to log file (default)\n"); printf("\t-o Overwrite log file, don't append\n"); - printf("\t-P Passive only\n"); printf("\t-h Print usage\n"); printf("\t-? Print usage\n"); printf("\t-V Print version\n"); @@ -548,19 +547,12 @@ static void usage(char *pname) argc--; } - while ( EOF != (opt = getopt(argc, argv, "O:l:s:d:Dp:h?VPaof:")) ) + while ( EOF != (opt = getopt(argc, argv, "O:l:s:d:Dp:h?Vaof:")) ) switch (opt) { case 'O': pstrcpy(user_socket_options,optarg); break; - case 'P': - { - extern BOOL passive; - passive = True; - } - break; - case 's': pstrcpy(servicesf,optarg); break; -- cgit