aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-05-30 14:57:06 -0700
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-05-30 18:54:52 -0700
commit7b553598cd1d3d777ea8481dcf875765fd255ff2 (patch)
treec70f53d30885926fc0a4504f6036584d04fc3084
parent555b440573decabc9fdd7e6f5abafefe602fc302 (diff)
downloadcrda-7b553598cd1d3d777ea8481dcf875765fd255ff2.tar.gz
crda: clarify intersect.c only computes an intersection
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>
-rw-r--r--intersect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/intersect.c b/intersect.c
index bc1e63e..baca5f1 100644
--- a/intersect.c
+++ b/intersect.c
@@ -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);