]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - wilink8-wlan/crda.git/commitdiff
crda: clarify intersect.c only computes an intersection
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>
Thu, 30 May 2013 21:57:06 +0000 (14:57 -0700)
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>
Fri, 31 May 2013 01:54:52 +0000 (18:54 -0700)
World regulatory domains should deal with passive scan
flags to account for gaps in the frequency spectrum that
some countries do not rely on but some APs / Cell towers
could be relied upon for determining location.

Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
intersect.c

index bc1e63e554e23617f6ee6e0cc91a29f526960367..baca5f15d0e9303be815e208b484e34ed3222458 100644 (file)
@@ -7,7 +7,7 @@
 #include "reglib.h"
 
 /* Intersects regulatory domains, this will skip any regulatory marked with
- * an alpha2 of '00', which is used to indicate a regulatory domain */
+ * an alpha2 of '00', which is used to indicate a world regulatory domain */
 
 int main(int argc, char **argv)
 {
@@ -67,7 +67,7 @@ int main(int argc, char **argv)
                free(prev_rd_intsct);
 
        /* Tada! */
-       printf("== World regulatory domain: ==\n");
+       printf("Intersected regulatory domain:\n");
        reglib_print_regdom(rd_intsct);
 
        free(rd_intsct);