aboutsummaryrefslogtreecommitdiffstats
path: root/dbparse.py
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-10-21 13:47:25 +0200
committerJohn W. Linville <linville@tuxdriver.com>2013-11-27 11:19:49 -0500
commitef296c1b59ce96ef2aa1844fe4b80c87249a795a (patch)
tree58f71f45afc0d94ca5a541087e2b19b4a3bb1e16 /dbparse.py
parent159f0f39db427f63e188839eac78718a8efe697e (diff)
downloadexternal_wireless-regdb-ef296c1b59ce96ef2aa1844fe4b80c87249a795a.tar.gz
external_wireless-regdb-ef296c1b59ce96ef2aa1844fe4b80c87249a795a.tar.bz2
external_wireless-regdb-ef296c1b59ce96ef2aa1844fe4b80c87249a795a.zip
wireless-regdb: consolidate passive-scan and no-ibss flags
These are used interchangeably so just do away with the redundancy. Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'dbparse.py')
-rwxr-xr-xdbparse.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbparse.py b/dbparse.py
index 32cbce9..29eb9d6 100755
--- a/dbparse.py
+++ b/dbparse.py
@@ -12,8 +12,8 @@ flag_definitions = {
'DFS': 1<<4,
'PTP-ONLY': 1<<5,
'PTMP-ONLY': 1<<6,
- 'PASSIVE-SCAN': 1<<7,
- 'NO-IBSS': 1<<8,
+ 'NO-IR': 1<<7,
+ # hole at bit 8
# hole at bit 9. FIXME: Where is NO-HT40 defined?
'NO-HT40': 1<<10,
}