From aeaa901a72b82a4d4e3a43301b67ba5534423358 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 21 Jan 2003 06:30:11 +0000 Subject: Updated some comments. (This used to be commit f150af98a77ebcfa848735b7a67bbb95bd6d5b57) --- source3/lib/wins_srv.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/lib/wins_srv.c b/source3/lib/wins_srv.c index 328350f2be..3372f74dcb 100644 --- a/source3/lib/wins_srv.c +++ b/source3/lib/wins_srv.c @@ -61,17 +61,13 @@ #define DEATH_TIME 600 /* The list of dead wins servers is stored in gencache.tdb. Each server is - marked dead m the point of view of a given source address. We keep a + marked dead from the point of view of a given source address. We keep a separate dead list for each src address to cope with multiple interfaces that are not routable to each other. */ #define WINS_SRV_FMT "WINS_SRV_DEAD/%s,%s" /* wins_ip,src_ip */ -/* - see if an ip is on the dead list -*/ - static char *wins_srv_keystr(struct in_addr wins_ip, struct in_addr src_ip) { char *keystr; @@ -85,6 +81,10 @@ static char *wins_srv_keystr(struct in_addr wins_ip, struct in_addr src_ip) return keystr; } +/* + see if an ip is on the dead list +*/ + BOOL wins_srv_is_dead(struct in_addr wins_ip, struct in_addr src_ip) { char *keystr = wins_srv_keystr(wins_ip, src_ip); -- cgit