ovs-vsctl: Prevent uninitialized variable warning.
authorJesse Gross <jesse@nicira.com>
Wed, 20 Jan 2010 19:19:47 +0000 (14:19 -0500)
committerJesse Gross <jesse@nicira.com>
Wed, 20 Jan 2010 19:24:22 +0000 (14:24 -0500)
commit84a0ee89e29cdae2b9cc80ae383a1222ba4f5ad5
treefa5346da341bfac2fea819fb971a75859725a9e7
parent91f227cad7cd6a1a36c8cac75e56d1308821fe34
ovs-vsctl: Prevent uninitialized variable warning.

The compiler warns about next_cfg being uninitialized but in the cases
where it is unset we will never reach the point where it is used.  This
just sets next_cfg to 0 to stop the whining.
utilities/ovs-vsctl.c