cluster: STABLE2 - group: Make group_tool checks more robust

Fabio M. Di Nitto fabbione@fedoraproject.org
Thu Jun 11 06:25:00 GMT 2009


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=899f274d7c39dda624325d1b6a0141377b1af038
Commit:        899f274d7c39dda624325d1b6a0141377b1af038
Parent:        7b69341ac1c82feba990ccefb602726920574da4
Author:        Lon Hohberger <lhh@redhat.com>
AuthorDate:    Tue Mar 31 15:59:11 2009 -0400
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Thu Jun 11 08:25:05 2009 +0200

group: Make group_tool checks more robust

bz 493165

Signed-off-by: Lon Hohberger <lhh@redhat.com>
---
 group/tool/main.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/group/tool/main.c b/group/tool/main.c
index 6764d28..591ffd0 100644
--- a/group/tool/main.c
+++ b/group/tool/main.c
@@ -279,7 +279,8 @@ int do_ls(int argc, char **argv)
 		count = 1;
 
 		/* don't output if there's no group at all */
-		if (data[0].id == 0) {
+		if (data[0].id == 0 && !strlen(data[0].name) && 
+		    !strlen(data[0].client_name)) {
 			fprintf(stderr, "groupd has no information about "
 			        "the specified group\n");
 			return 1;



More information about the Cluster-cvs mailing list