diff options
Diffstat (limited to 'openbsd-compat/bsd-getpeereid.c')
-rw-r--r-- | openbsd-compat/bsd-getpeereid.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/openbsd-compat/bsd-getpeereid.c b/openbsd-compat/bsd-getpeereid.c index fe2edad71..bdae8b637 100644 --- a/openbsd-compat/bsd-getpeereid.c +++ b/openbsd-compat/bsd-getpeereid.c | |||
@@ -16,10 +16,13 @@ | |||
16 | 16 | ||
17 | #include "includes.h" | 17 | #include "includes.h" |
18 | 18 | ||
19 | RCSID("$Id: bsd-getpeereid.c,v 1.3 2004/02/17 05:49:55 djm Exp $"); | ||
20 | |||
21 | #if !defined(HAVE_GETPEEREID) | 19 | #if !defined(HAVE_GETPEEREID) |
22 | 20 | ||
21 | #include <sys/types.h> | ||
22 | #include <sys/socket.h> | ||
23 | |||
24 | #include <unistd.h> | ||
25 | |||
23 | #if defined(SO_PEERCRED) | 26 | #if defined(SO_PEERCRED) |
24 | int | 27 | int |
25 | getpeereid(int s, uid_t *euid, gid_t *gid) | 28 | getpeereid(int s, uid_t *euid, gid_t *gid) |