From: Ben Pfaff Date: Mon, 7 Dec 2009 17:25:32 +0000 (-0800) Subject: ofproto: Fix reversed inequality test. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96d2ee8e314fb95a0066db50c5af585aef1700c3;p=openvswitch ofproto: Fix reversed inequality test. Thanks to Glen Gibb for pointing out the problem. --- diff --git a/ofproto/netflow.c b/ofproto/netflow.c index 2c7ae9e4..b0166638 100644 --- a/ofproto/netflow.c +++ b/ofproto/netflow.c @@ -210,7 +210,7 @@ netflow_set_options(struct netflow *nf, collectors_create(&nf_options->collectors, 0, &nf->collectors); old_timeout = nf->active_timeout; - if (nf_options->active_timeout < 0) { + if (nf_options->active_timeout > 0) { nf->active_timeout = nf_options->active_timeout; } else { nf->active_timeout = ACTIVE_TIMEOUT_DEFAULT;