summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-05-10 00:35:24 +0000
committerTim Potter <tpot@samba.org>2001-05-10 00:35:24 +0000
commit9051f1e2c70e5fcfab2068a201509bc9129d20ad (patch)
tree20ee0c61abe6cd939f666c41a150fdadca36e7a6 /source3/lib
parentf179319ceeb795db57c3d22f2593609174e795e2 (diff)
downloadsamba-9051f1e2c70e5fcfab2068a201509bc9129d20ad.tar.gz
samba-9051f1e2c70e5fcfab2068a201509bc9129d20ad.tar.bz2
samba-9051f1e2c70e5fcfab2068a201509bc9129d20ad.zip
Bumped up debug level on set socket options from 3 to 5.
(This used to be commit f0b8ff4eeb3f276c37d062dbd25f7c8b0a02d593)
Diffstat (limited to 'source3/lib')
-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));
}
}
}