Bumped up debug level on set socket options from 3 to 5.
authorTim Potter <tpot@samba.org>
Thu, 10 May 2001 00:35:24 +0000 (00:35 +0000)
committerTim Potter <tpot@samba.org>
Thu, 10 May 2001 00:35:24 +0000 (00:35 +0000)
(This used to be commit f0b8ff4eeb3f276c37d062dbd25f7c8b0a02d593)

source3/lib/util_sock.c

index 88fe8189b0d6e576df099bed57b888ba17356c89..3269042117b6909b83735ca7c9108992912b860a 100644 (file)
@@ -106,9 +106,9 @@ static void print_socket_options(int s)
 
        for (; p->name != NULL; p++) {
                if (getsockopt(s, p->level, p->option, (void *)&value, &vlen) == -1) {
-                       DEBUG(3,("Could not test socket option %s.\n", p->name));
+                       DEBUG(5,("Could not test socket option %s.\n", p->name));
                } else {
-                       DEBUG(3,("socket option %s = %d\n",p->name,value));
+                       DEBUG(5,("socket option %s = %d\n",p->name,value));
                }
        }
  }