Skip to content
Snippets Groups Projects
Commit 9f5163e6 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Also fix -MM, -CC, etc..

parent c9cf8407
No related branches found
No related tags found
No related merge requests found
......@@ -114,10 +114,10 @@ tool_args( int argc, char **argv )
char *control, *cvalue;
switch( i ) {
case 'c': /* continuous operation mode */
contoper = 1;
contoper++;
break;
case 'C':
referrals = 1;
referrals++;
break;
case 'd':
debug |= atoi( optarg );
......@@ -260,10 +260,10 @@ tool_args( int argc, char **argv )
break;
case 'M':
/* enable Manage DSA IT */
manageDSAit = 1;
manageDSAit++;
break;
case 'n': /* print operations, don't actually do them */
not = 1;
not++;
break;
case 'O':
#ifdef HAVE_CYRUS_SASL
......@@ -372,7 +372,7 @@ tool_args( int argc, char **argv )
#endif
break;
case 'v': /* verbose mode */
verbose = 1;
verbose++;
break;
case 'V': /* version */
version++;
......@@ -389,7 +389,7 @@ tool_args( int argc, char **argv )
passwd.bv_len = strlen( passwd.bv_val );
break;
case 'W':
want_bindpw = 1;
want_bindpw++;
break;
case 'y':
pw_file = optarg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment