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 <b...@nicira.com> --- lib/ofpbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ofpbuf.c b/lib/ofpbuf.c index f7145db..d578ab5 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) { -- 1.7.10.4 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev