mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-28 07:14:31 +08:00
- (dtucker) [auth2-pubkey.c] wrap paths.h in an ifdef for platforms that
don't have it. Spotted by tim@.
This commit is contained in:
parent
f96ff18a92
commit
737f7aff36
@ -4,6 +4,8 @@
|
||||
openbsd-compat/openbsd-compat.h] Move the fallback code for setting uids
|
||||
and gids from uidswap.c to the compat library, which allows it to work with
|
||||
the new setresuid calls in auth2-pubkey. with tim@, ok djm@
|
||||
- (dtucker) [auth2-pubkey.c] wrap paths.h in an ifdef for platforms that
|
||||
don't have it. Spotted by tim@.
|
||||
|
||||
20121104
|
||||
- (djm) OpenBSD CVS Sync
|
||||
|
@ -31,7 +31,9 @@
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <paths.h>
|
||||
#ifdef HAVE_PATHS_H
|
||||
# include <paths.h>
|
||||
#endif
|
||||
#include <pwd.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
|
Loading…
Reference in New Issue
Block a user