summaryrefslogtreecommitdiffstats
path: root/source/nmbd
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>1998-06-08 03:44:13 +0000
committerChristopher R. Hertel <crh@samba.org>1998-06-08 03:44:13 +0000
commitae706bff10cc77f06b8069e637ec9768d6a46966 (patch)
treecc67c7ae46c0331a3818da7cabf60cc6ccea64cc /source/nmbd
parent5f46c7c4b11a75f1ffbd806cde915b4bf28232db (diff)
downloadsamba-ae706bff10cc77f06b8069e637ec9768d6a46966.tar.gz
samba-ae706bff10cc77f06b8069e637ec9768d6a46966.tar.xz
samba-ae706bff10cc77f06b8069e637ec9768d6a46966.zip
Cosmetic. Added a cast to (void) to a call to add_name_to_subnet() since
the return value was being ignored anyway. SGI's lint said: function returns value which is sometimes ignored add_name_to_subnet Chris -)-----
Diffstat (limited to 'source/nmbd')
-rw-r--r--source/nmbd/asyncdns.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/nmbd/asyncdns.c b/source/nmbd/asyncdns.c
index 60198197930..3d2d5303de2 100644
--- a/source/nmbd/asyncdns.c
+++ b/source/nmbd/asyncdns.c
@@ -35,16 +35,16 @@ static struct name_record *add_dns_result(struct nmb_name *question, struct in_a
if (!addr.s_addr) {
/* add the fail to WINS cache of names. give it 1 hour in the cache */
DEBUG(3,("add_dns_result: Negative DNS answer for %s\n", qname));
- add_name_to_subnet(wins_server_subnet,qname,name_type,
- NB_ACTIVE, 60*60, DNSFAIL_NAME, 1, &addr);
- return NULL;
+ (void)add_name_to_subnet( wins_server_subnet, qname, name_type,
+ NB_ACTIVE, 60*60, DNSFAIL_NAME, 1, &addr );
+ return( NULL );
}
/* add it to our WINS cache of names. give it 2 hours in the cache */
DEBUG(3,("add_dns_result: DNS gave answer for %s of %s\n", qname, inet_ntoa(addr)));
- return add_name_to_subnet(wins_server_subnet,qname,name_type,
- NB_ACTIVE, 2*60*60, DNS_NAME, 1, &addr);
+ return( add_name_to_subnet( wins_server_subnet, qname, name_type,
+ NB_ACTIVE, 2*60*60, DNS_NAME, 1, &addr ) );
}