From f150af98a77ebcfa848735b7a67bbb95bd6d5b57 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 21 Jan 2003 06:30:11 +0000 Subject: [PATCH] Updated some comments. --- source/lib/wins_srv.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/lib/wins_srv.c b/source/lib/wins_srv.c index 328350f2be7..3372f74dcbe 100644 --- a/source/lib/wins_srv.c +++ b/source/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);