Re: [libvirt] [PATCH v2 1/3] networkStartNetwork: Be more verbose

2014-02-07 Thread Laine Stump
On 02/05/2014 12:11 PM, Michal Privoznik wrote: > The lack of debug printings might be frustrating in the future. > Moreover, this function doesn't follow the usual pattern we have in the > rest of the code: > > int ret = -1; > /* do some work */ > ret = 0; > cleanup: > /* some cleanup work

[libvirt] [PATCH v2 1/3] networkStartNetwork: Be more verbose

2014-02-05 Thread Michal Privoznik
The lack of debug printings might be frustrating in the future. Moreover, this function doesn't follow the usual pattern we have in the rest of the code: int ret = -1; /* do some work */ ret = 0; cleanup: /* some cleanup work */ return ret; Signed-off-by: Michal Privoznik --- src/netw