diff options
author | Richard Sharpe <sharpe@samba.org> | 2004-04-16 03:57:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:16 -0500 |
commit | 0374be5d931903f1040fd4e759e6b1d681be2047 (patch) | |
tree | ab3c2af8653c20f7d51e4763c420b3f0853aaba8 /source3/nsswitch | |
parent | 4938095e77b0b5334935833b34e23bde74c6849d (diff) | |
download | samba-0374be5d931903f1040fd4e759e6b1d681be2047.tar.gz samba-0374be5d931903f1040fd4e759e6b1d681be2047.tar.bz2 samba-0374be5d931903f1040fd4e759e6b1d681be2047.zip |
r248: Add support for printing out the MAC address on nmblookup.
(This used to be commit bf9f02be5fc1d09c8c08c78c3f2df23b2099ba4f)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_wins.c | 2 | ||||
-rw-r--r-- | source3/nsswitch/wins.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_wins.c b/source3/nsswitch/winbindd_wins.c index a1eef159c0..59d600d1ea 100644 --- a/source3/nsswitch/winbindd_wins.c +++ b/source3/nsswitch/winbindd_wins.c @@ -78,7 +78,7 @@ static struct node_status *lookup_byaddr_backend(char *addr, int *count) make_nmb_name(&nname, "*", 0); ip = *interpret_addr2(addr); - status = node_status_query(fd,&nname,ip, count); + status = node_status_query(fd,&nname,ip, count, NULL); close(fd); return status; diff --git a/source3/nsswitch/wins.c b/source3/nsswitch/wins.c index 100a103924..88c65b767f 100644 --- a/source3/nsswitch/wins.c +++ b/source3/nsswitch/wins.c @@ -145,7 +145,7 @@ static struct node_status *lookup_byaddr_backend(char *addr, int *count) make_nmb_name(&nname, "*", 0); ip = *interpret_addr2(addr); - status = node_status_query(fd,&nname,ip, count); + status = node_status_query(fd,&nname,ip, count, NULL); close(fd); return status; |