Increase gid_t and uid_t to 32 bits

Increase gid_t and uid_t to 32 bits and provide backwards compatibility
where needed.
This commit is contained in:
Thomas Veerman
2011-09-05 13:56:14 +00:00
parent fde9a258d0
commit 8a266a478e
36 changed files with 339 additions and 234 deletions

View File

@@ -1,11 +1,18 @@
#ifndef __SYS_UCRED_H
#define __SYS_UCRED_H
struct ucred
struct ucred_old
{
pid_t pid;
uid_t uid;
gid_t gid;
short uid;
char gid;
};
struct ucred
{
pid_t pid;
uid_t uid;
gid_t gid;
};
#endif