summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-10-07 14:36:22 +0000
committerAndrew Tridgell <tridge@samba.org>1997-10-07 14:36:22 +0000
commit0235299ea51eb553b157de0cffa117d01adf6a70 (patch)
treec6ed73efd47d5fab81565aecb15e491bc8b87f2d /source3/lib
parent89042c146eaefac41d6df99eeb2d2847ed3a3067 (diff)
downloadsamba-0235299ea51eb553b157de0cffa117d01adf6a70.tar.gz
samba-0235299ea51eb553b157de0cffa117d01adf6a70.tar.bz2
samba-0235299ea51eb553b157de0cffa117d01adf6a70.zip
increase the debug level in the "added interface" debug line
(This used to be commit b12b3626fd9ccc9cdf2111937b3ee344da361b1f)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c
index 940af1eccf..147425d0fc 100644
--- a/source3/lib/interface.c
+++ b/source3/lib/interface.c
@@ -337,9 +337,9 @@ static void interpret_interfaces(char *s, struct interface **interfaces,
iface->next = NULL;
(*interfaces) = last_iface = iface;
- DEBUG(1,("Added interface ip=%s ",inet_ntoa(iface->ip)));
- DEBUG(1,("bcast=%s ",inet_ntoa(iface->bcast)));
- DEBUG(1,("nmask=%s\n",inet_ntoa(iface->nmask)));
+ DEBUG(2,("Added interface ip=%s ",inet_ntoa(iface->ip)));
+ DEBUG(2,("bcast=%s ",inet_ntoa(iface->bcast)));
+ DEBUG(2,("nmask=%s\n",inet_ntoa(iface->nmask)));
}