aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-10-08 00:29:17 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-10-08 00:29:17 +0000
commit052825d8e694251718c15965e6809e1b0dd4c3b4 (patch)
tree7040da6bd700fdb4acce452743de444749ef92df /tools
parent695aff26f98ad7e0d386b04cfac2177bcdc58e50 (diff)
Fix the blurb regexp (sigh)
svn path=/trunk/; revision=34418
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkAPIs.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 0b18a665b0..443221028b 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -975,9 +975,9 @@ sub check_hf_entries($$)
\s*,\s*
([A-Z0-9&_\(\)' -]+) # convert
\s*,\s*
- ([A-Z0-9x_]+) # bitmask
+ ([A-Z0-9_]+) # bitmask
\s*,\s*
- ([NULL|"[A-Z0-9 '\./\(\)\?_:-]+"]) # blurb (NULL or a string)
+ (NULL|"[A-Z0-9 '\./\(\)\?_:-]+") # blurb (NULL or a string)
\s*,\s*
HFILL # HFILL
}xgios);