Updated some comments.
authorTim Potter <tpot@samba.org>
Tue, 21 Jan 2003 06:30:11 +0000 (06:30 +0000)
committerTim Potter <tpot@samba.org>
Tue, 21 Jan 2003 06:30:11 +0000 (06:30 +0000)
(This used to be commit f150af98a77ebcfa848735b7a67bbb95bd6d5b57)

source3/lib/wins_srv.c

index 328350f2be7f4eb45522bbb6986540bf7366e5be..3372f74dcbe967c2730d331a0009a7f46e747b28 100644 (file)
 #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);