diff options
author | Damjan Marion <damarion@cisco.com> | 2016-10-05 09:50:38 +0200 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2016-10-05 09:29:45 +0000 |
commit | 4c20e7197707aa95b144b289704e9e97335db17d (patch) | |
tree | 4db001efc3f74d9b88ff2862f8d5159288bc1d33 | |
parent | e91836368cec2ffed47743dc5626e2d0c44fc0ea (diff) |
dpdk: fix issue in parsing startup.conf dpdk section
Change-Id: Ibbcce6f54bc76b8922b1c649278643c6294d13f9
Signed-off-by: Damjan Marion <damarion@cisco.com>
-rw-r--r-- | vnet/vnet/devices/dpdk/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnet/vnet/devices/dpdk/init.c b/vnet/vnet/devices/dpdk/init.c index 0516edc8faf..a5c056c6a68 100644 --- a/vnet/vnet/devices/dpdk/init.c +++ b/vnet/vnet/devices/dpdk/init.c @@ -1213,7 +1213,7 @@ dpdk_config (vlib_main_t * vm, unformat_input_t * input) else if (unformat (input, "default")) ; - else if (unformat (input, " ")) + else if (unformat_skip_white_space (input)) ; else { |