summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2014-01-16 18:31:16 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2014-01-16 19:48:29 +0100
commit21cfa9a7405f78f424c869e592d21ebdaf379803 (patch)
tree1a0dad499a4197c0a8522401bd93d07987dc2374 /src/scanner.l
parenta4b1c0c704d082a70fe68b3a97a9c03416f63ccf (diff)
src: use ':' instead of '=>' in dictionaries
Replace => by : to make it easier for most shell users, as > implies a redirection, let's avoid possible confusion that may result if you forget to escape it. This works fine if you don't forget to add space between the key and the value. If you forget to add the space, depending on the case, the scanner may recognize it correctly or process it as a string. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 936c035e..25fbc610 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -221,7 +221,6 @@ addrstring ({macaddr}|{ip4addr}|{ip6addr})
"@" { return AT; }
"$" { return '$'; }
"=" { return '='; }
-"=>" { return ARROW; }
"vmap" { return VMAP; }
"include" { return INCLUDE; }