mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s4-interface: raise the debug level for interface discovery
This commit is contained in:
parent
c79021382b
commit
79ef434b90
@ -116,18 +116,18 @@ static void add_interface(TALLOC_CTX *mem_ctx, const struct iface_struct *ifs, s
|
||||
/* keep string versions too, to avoid people tripping over the implied
|
||||
static in inet_ntoa() */
|
||||
print_sockaddr(addr, sizeof(addr), &iface->ip);
|
||||
DEBUG(2,("added interface %s ip=%s ",
|
||||
DEBUG(4,("added interface %s ip=%s ",
|
||||
iface->name, addr));
|
||||
iface->ip_s = talloc_strdup(iface, addr);
|
||||
|
||||
print_sockaddr(addr, sizeof(addr),
|
||||
&iface->bcast);
|
||||
DEBUG(2,("bcast=%s ", addr));
|
||||
DEBUG(4,("bcast=%s ", addr));
|
||||
iface->bcast_s = talloc_strdup(iface, addr);
|
||||
|
||||
print_sockaddr(addr, sizeof(addr),
|
||||
&iface->netmask);
|
||||
DEBUG(2,("netmask=%s\n", addr));
|
||||
DEBUG(4,("netmask=%s\n", addr));
|
||||
iface->nmask_s = talloc_strdup(iface, addr);
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user