[libvirt] [PATCH 04/13] Consistently return 0 on success, -1 on failure in bridge_driver.c

2010-12-20 Thread Laine Stump
Some functions in this file were returning 1 on success and 0 on failure, and others were returning 0 on success and -1 on failure. Switch them all to return the libvirt-preferred 0/-1. --- src/network/bridge_driver.c | 28 ++-- 1 files changed, 14 insertions(+), 14

Re: [libvirt] [PATCH 04/13] Consistently return 0 on success, -1 on failure in bridge_driver.c

2010-12-20 Thread Eric Blake
On 12/20/2010 01:03 AM, Laine Stump wrote: Some functions in this file were returning 1 on success and 0 on failure, and others were returning 0 on success and -1 on failure. Switch them all to return the libvirt-preferred 0/-1. --- src/network/bridge_driver.c | 28