From 230ecf7ca3547201f790cd34d57e3a3f58c78109 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Tue, 27 Apr 2004 13:12:31 +0000 Subject: [PATCH] r376: BUG 1288: resolve any machine netbios name (0x00) and not just servers (0x20) --- source/nsswitch/wins.c | 4 ++-- 1 file 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; } -- 2.11.4.GIT