pull/22/head
weetmuts 2019-04-03 19:13:59 +02:00
rodzic 927bee871f
commit fcf1368b5e
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -733,7 +733,11 @@ AccessCheck checkIfExistsAndSameGroup(string device)
// The file did not exist.
if (ok) return AccessCheck::NotThere;
gid_t groups[256];
#if defined(__APPLE__) && defined(__MACH__)
int groups[256];
#else
gid_t groups[256];
#endif
int ngroups = 256;
struct passwd *p = getpwuid(getuid());