[libvirt] [PATCH] syntax-check: Allow plain close in virportallocatortest

2016-02-11 Thread Michal Privoznik
After a03cbfe0fb9 we switched to a plain close() instead of VIR_FORCE_CLOSE(). This makes sense because it's a mocking library and thus should not require anything from libvirt. However, we forgot add an exemption to our 'forbid close' rule. Signed-off-by: Michal Privoznik

Re: [libvirt] [PATCH] syntax-check: Allow plain close in virportallocatortest

2016-02-11 Thread Andrea Bolognani
On Thu, 2016-02-11 at 13:18 +0100, Michal Privoznik wrote: > After a03cbfe0fb9 we switched to a plain close() instead of > VIR_FORCE_CLOSE(). This makes sense because it's a mocking > library and thus should not require anything from libvirt. > However, we forgot add an exemption to our 'forbid