diff options
author | Andrew Tridgell <tridge@samba.org> | 1997-11-01 08:13:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1997-11-01 08:13:54 +0000 |
commit | d8b896a90fb693187a11456e46971c873e9f0d60 (patch) | |
tree | 3cc4e14c0d8761f22204bef076d2d59c0ffa774b | |
parent | 79858d610c37675b9dc56a949723053ac9b67620 (diff) | |
download | samba-d8b896a90fb693187a11456e46971c873e9f0d60.tar.gz samba-d8b896a90fb693187a11456e46971c873e9f0d60.tar.xz samba-d8b896a90fb693187a11456e46971c873e9f0d60.zip |
change a debug level
-rw-r--r-- | source/lib/interface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/lib/interface.c b/source/lib/interface.c index 3b038dcda69..8af2696a446 100644 --- a/source/lib/interface.c +++ b/source/lib/interface.c @@ -302,9 +302,9 @@ static void interpret_interfaces(char *s, struct interface **interfaces, last_iface->next = iface; } last_iface = iface; - DEBUG(1,("Added %s ip=%s ",description,inet_ntoa(iface->ip))); - DEBUG(1,("bcast=%s ",inet_ntoa(iface->bcast))); - DEBUG(1,("nmask=%s\n",inet_ntoa(iface->nmask))); + DEBUG(2,("Added %s ip=%s ",description,inet_ntoa(iface->ip))); + DEBUG(2,("bcast=%s ",inet_ntoa(iface->bcast))); + DEBUG(2,("nmask=%s\n",inet_ntoa(iface->nmask))); } if (*interfaces) return; |