summaryrefslogtreecommitdiff
path: root/source/nsswitch/wins.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/nsswitch/wins.c')
-rw-r--r--source/nsswitch/wins.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/nsswitch/wins.c b/source/nsswitch/wins.c
index 88c65b767f5..b71995998f5 100644
--- a/source/nsswitch/wins.c
+++ b/source/nsswitch/wins.c
@@ -100,7 +100,7 @@ static struct in_addr *lookup_byname_backend(const char *name, int *count)
*count = 0;
/* always try with wins first */
- if (resolve_wins(name,0x20,&address,count)) {
+ if (resolve_wins(name,0x00,&address,count)) {
if ( (ret = (struct in_addr *)malloc(sizeof(struct in_addr))) == NULL ) {
free( address );
return NULL;
@@ -118,7 +118,7 @@ static struct in_addr *lookup_byname_backend(const char *name, int *count)
/* uggh, we have to broadcast to each interface in turn */
for (j=iface_count() - 1;j >= 0;j--) {
struct in_addr *bcast = iface_n_bcast(j);
- ret = name_query(fd,name,0x20,True,True,*bcast,count, &flags, NULL);
+ ret = name_query(fd,name,0x00,True,True,*bcast,count, &flags, NULL);
if (ret) break;
}