]> pd.if.org Git - zpackage/commitdiff
print unknown group name on install
authorNathan Wagner <nw@hydaspes.if.org>
Mon, 26 Nov 2018 08:49:04 +0000 (08:49 +0000)
committerNathan Wagner <nw@hydaspes.if.org>
Mon, 26 Nov 2018 08:49:04 +0000 (08:49 +0000)
zpm-syncfs.c

index 59a88256f66c0cfb963750b8119a856876ddd668..ce0c0bb85f20fa5777a092f0dec92e8731b12b0e 100644 (file)
@@ -556,7 +556,7 @@ static int read_item(struct config *conf, int ncols, char **vals, char **cols,
                }
                gr = getgrnam(val);
                if (!gr) {
-                       seterror(conf, "no group entry");
+                       seterror(conf, "no group entry for %s", val);
                        return 0;
                }
                n->gid = gr->gr_gid;