From e1ab3c3470a7f1159d52ed0c1eacf4a5a7b6bc2b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 28 Dec 2010 11:55:47 +0100 Subject: s3: Remove an ancient typedef --- nsswitch/wins.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nsswitch/wins.c') diff --git a/nsswitch/wins.c b/nsswitch/wins.c index aa02f32ce1..731efcb448 100644 --- a/nsswitch/wins.c +++ b/nsswitch/wins.c @@ -162,12 +162,12 @@ static struct in_addr *lookup_byname_backend(const char *name, int *count) #ifdef HAVE_NS_API_H -static NODE_STATUS_STRUCT *lookup_byaddr_backend(char *addr, int *count) +static struct node_status *lookup_byaddr_backend(char *addr, int *count) { int fd; struct sockaddr_storage ss; struct nmb_name nname; - NODE_STATUS_STRUCT *status; + struct node_status *status; if (!initialised) { nss_wins_init(); @@ -202,7 +202,7 @@ int lookup(nsd_file_t *rq) char *key; char *addr; struct in_addr *ip_list; - NODE_STATUS_STRUCT *status; + struct node_status *status; int i, count, len, size; char response[1024]; bool found = False; -- cgit