Browse Source

fix -DN not implying -Dn

1.2
Oswald Buddenhagen 10 years ago
parent
commit
ac7cd86c73
  1. 4
      src/main.c

4
src/main.c

@ -448,7 +448,7 @@ main( int argc, char **argv )
else if (!strcmp( opt, "-net" )) else if (!strcmp( opt, "-net" ))
op = VERBOSE | DEBUG_NET; op = VERBOSE | DEBUG_NET;
else if (!strcmp( opt, "-net-all" )) else if (!strcmp( opt, "-net-all" ))
op = VERBOSE | DEBUG_NET_ALL; op = VERBOSE | DEBUG_NET | DEBUG_NET_ALL;
else if (!strcmp( opt, "-sync" )) else if (!strcmp( opt, "-sync" ))
op = VERBOSE | DEBUG_SYNC; op = VERBOSE | DEBUG_SYNC;
else else
@ -637,7 +637,7 @@ main( int argc, char **argv )
op |= DEBUG_NET | VERBOSE; op |= DEBUG_NET | VERBOSE;
break; break;
case 'N': case 'N':
op |= DEBUG_NET_ALL | VERBOSE; op |= DEBUG_NET | DEBUG_NET_ALL | VERBOSE;
break; break;
case 's': case 's':
op |= DEBUG_SYNC | VERBOSE; op |= DEBUG_SYNC | VERBOSE;

Loading…
Cancel
Save