Re: [libvirt] [PATCH] Fix virsh command 'cd'.

2010-03-12 Thread Daniel Veillard
On Fri, Mar 12, 2010 at 12:03:42AM -0500, Laine Stump wrote: > On 03/11/2010 06:00 PM, Chris Lalancette wrote: > >cmdCd was returning a 0 on success and -1 on error, when > >the rest of the code expected a TRUE on success and a > >FALSE on error. Fix the discrepancy. > > > >Signed-off-by: Chris La

Re: [libvirt] [PATCH] Fix virsh command 'cd'.

2010-03-11 Thread Laine Stump
On 03/11/2010 06:00 PM, Chris Lalancette wrote: cmdCd was returning a 0 on success and -1 on error, when the rest of the code expected a TRUE on success and a FALSE on error. Fix the discrepancy. Signed-off-by: Chris Lalancette --- tools/virsh.c |6 +++--- 1 files changed, 3 insertions(+

[libvirt] [PATCH] Fix virsh command 'cd'.

2010-03-11 Thread Chris Lalancette
cmdCd was returning a 0 on success and -1 on error, when the rest of the code expected a TRUE on success and a FALSE on error. Fix the discrepancy. Signed-off-by: Chris Lalancette --- tools/virsh.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/virsh.c b/too