]> andersk Git - openssh.git/blobdiff - groupaccess.c
*** empty log message ***
[openssh.git] / groupaccess.c
index 66dfa68fe1f86868e8b6ff9bdf9abbdab89b8ca7..b907918323ed7a7dc8fbceb016db0940d912cd86 100644 (file)
@@ -49,7 +49,7 @@ ga_init(const char *user, gid_t base)
 
        ngroups = sizeof(groups_bygid) / sizeof(gid_t);
        if (getgrouplist(user, base, groups_bygid, &ngroups) == -1)
-               log("getgrouplist: groups list too small");
+               logit("getgrouplist: groups list too small");
        for (i = 0, j = 0; i < ngroups; i++)
                if ((gr = getgrgid(groups_bygid[i])) != NULL)
                        groups_byname[j++] = xstrdup(gr->gr_name);
This page took 0.029714 seconds and 4 git commands to generate.