Browse Source

fix build error on OS X

OPENBSD_5_7
Brent Cook 9 years ago
parent
commit
7559d73f7d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      compat/bsd-setresgid.c

+ 1
- 1
compat/bsd-setresgid.c View File

@ -30,7 +30,7 @@ setresgid(gid_t rgid, gid_t egid, gid_t sgid)
# else
if (setegid(egid) == -1)
return -1;
if (setgid(rgid)) == -1)
if (setgid(rgid) == -1)
return -1;
# endif


Loading…
Cancel
Save