From 1a8def8ecad3379ed1da34214a193f6e883cecf7 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 4 Nov 2013 22:37:23 -0800 Subject: [PATCH] ofpbuf: Allow whitespace other than spaces in hex data. It's easier to cut and paste lines of hexadecimal data into a command line if you don't have to worry about new-lines appearing in the command. Signed-off-by: Ben Pfaff Acked-by: Jarno Rajahalme --- lib/ofpbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ofpbuf.c b/lib/ofpbuf.c index f7145dbfe..d578ab56a 100644 --- a/lib/ofpbuf.c +++ b/lib/ofpbuf.c @@ -407,7 +407,7 @@ ofpbuf_put_hex(struct ofpbuf *b, const char *s, size_t *n) uint8_t byte; bool ok; - s += strspn(s, " "); + s += strspn(s, " \t\r\n"); byte = hexits_value(s, 2, &ok); if (!ok) { if (n) { -- 2.20.1