]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - utils/mountd/mountd.c
mountd: Fixed strcmp usage in in insert groups.
[nfs-utils.git] / 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));