summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/util_sock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index 88fe8189b0..3269042117 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -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));
}
}
}