From: Tetsuo NAKAGAWA Date: Sat, 20 Feb 2010 10:52:46 +0000 (-0800) Subject: ovs-dpctl: Fix setting of packet length for "controller" action X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efa6c663df0bcad748e3a89d7b3f4dec187f6f53;p=openvswitch ovs-dpctl: Fix setting of packet length for "controller" action --- diff --git a/utilities/ovs-ofctl.c b/utilities/ovs-ofctl.c index c36a3bc8..b0f77410 100644 --- a/utilities/ovs-ofctl.c +++ b/utilities/ovs-ofctl.c @@ -631,7 +631,7 @@ str_to_action(char *str, struct ofpbuf *b) /* Unless a numeric argument is specified, we send the whole * packet to the controller. */ - if (arg && (strspn(act, "0123456789") == strlen(act))) { + if (arg && (strspn(arg, "0123456789") == strlen(arg))) { oao->max_len = htons(str_to_u32(arg)); } else { oao->max_len = htons(UINT16_MAX);