]> git.proxmox.com Git - ovs.git/commitdiff
lex: Treat formfeeds as white space.
authorBen Pfaff <blp@ovn.org>
Fri, 7 Oct 2016 17:04:35 +0000 (10:04 -0700)
committerBen Pfaff <blp@ovn.org>
Wed, 12 Oct 2016 02:38:08 +0000 (19:38 -0700)
Also vertical tabs, whatever those are.

Signed-off-by: Ben Pfaff <blp@ovn.org>
Acked-by: Andy Zhou <azhou@ovn.org>
ovn/lib/lex.c

index a05edfaf73d8895632b97d55e7eca7b8ac90e469..7eee3b6dc24a18f077f61f6d73e54da5425f436b 100644 (file)
@@ -589,7 +589,7 @@ next:
         token->type = LEX_T_END;
         return p;
 
-    case ' ': case '\t': case '\n': case '\r':
+    case ' ': case '\t': case '\n': case '\r': case '\v': case '\f':
         p++;
         goto next;