commit ac7cd86c73702faa9728a9b84c30848ca1c63383
Author: Oswald Buddenhagen <o...@users.sf.net>
Date:   Sun Apr 26 12:07:31 2015 +0200

    fix -DN not implying -Dn

 src/main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.c b/src/main.c
index 3b14f46..2ed0b31 100644
--- a/src/main.c
+++ b/src/main.c
@@ -448,7 +448,7 @@ main( int argc, char **argv )
                                        else if (!strcmp( opt, "-net" ))
                                                op = VERBOSE | DEBUG_NET;
                                        else if (!strcmp( opt, "-net-all" ))
-                                               op = VERBOSE | DEBUG_NET_ALL;
+                                               op = VERBOSE | DEBUG_NET | 
DEBUG_NET_ALL;
                                        else if (!strcmp( opt, "-sync" ))
                                                op = VERBOSE | DEBUG_SYNC;
                                        else
@@ -637,7 +637,7 @@ main( int argc, char **argv )
                                        op |= DEBUG_NET | VERBOSE;
                                        break;
                                case 'N':
-                                       op |= DEBUG_NET_ALL | VERBOSE;
+                                       op |= DEBUG_NET | DEBUG_NET_ALL | 
VERBOSE;
                                        break;
                                case 's':
                                        op |= DEBUG_SYNC | VERBOSE;

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
isync-devel mailing list
isync-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/isync-devel

Reply via email to