mirror of
https://github.com/tmux/tmux.git
synced 2024-12-04 19:58:48 +00:00
Fix fallback implementaion of getpeereid, from Pino Toscano.
This commit is contained in:
parent
9c34aad21c
commit
19344efa78
@ -18,6 +18,7 @@
|
||||
#include <sys/socket.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifdef HAVE_UCRED_H
|
||||
#include <ucred.h>
|
||||
@ -49,6 +50,8 @@ getpeereid(int s, uid_t *uid, gid_t *gid)
|
||||
ucred_free(ucred);
|
||||
return (0);
|
||||
#else
|
||||
return (getuid());
|
||||
*uid = geteuid();
|
||||
*gid = getegid();
|
||||
return (0);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user