]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
mountd: Fixed strcmp usage in in insert groups.
authorMatthew Treinish <treinish@linux.vnet.ibm.com>
Wed, 3 Aug 2011 17:10:14 +0000 (13:10 -0400)
committerLuk Claes <luk@debian.org>
Sun, 2 Oct 2011 14:16:46 +0000 (16:16 +0200)
Fixed the usage of strcmp in the duplicate check in insert groups.
Fixes an issue with showmount and other commands that required
the group information.

Signed-off-by: Matthew Treinish <treinish@linux.vnet.ibm.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/mountd/mountd.c

index 035624c447ccfa68355332802eecdb6eb4069c61..bcf5080a7351b522c436abd24712ae7ff1b43f76 100644 (file)
@@ -633,7 +633,7 @@ static void insert_group(struct exportnode *e, char *newname)
        struct groupnode *g;
 
        for (g = e->ex_groups; g; g = g->gr_next)
-               if (strcmp(g->gr_name, newname))
+               if (!strcmp(g->gr_name, newname))
                        return;
 
        g = xmalloc(sizeof(*g));