mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [loginrec.c] Wrap paths.h in HAVE_PATHS_H.
This commit is contained in:
parent
b8f00193d8
commit
f19bbc3883
|
@ -5,6 +5,7 @@
|
|||
NB. this change will require that the privilege separation user must
|
||||
exist on all the time, not just when UsePrivilegeSeparation=yes
|
||||
- (tim) [configure.ac] s/BROKEN_UPDWTMP/BROKEN_UPDWTMPX/ on SCO OSR6
|
||||
- (dtucker) [loginrec.c] Wrap paths.h in HAVE_PATHS_H.
|
||||
|
||||
20060905
|
||||
- (dtucker) [configure.ac] s/AC_DEFINES/AC_DEFINE/ spotted by Roumen Petrov.
|
||||
|
@ -5407,4 +5408,4 @@
|
|||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.4533 2006/09/07 01:11:29 tim Exp $
|
||||
$Id: ChangeLog,v 1.4534 2006/09/07 12:57:53 dtucker Exp $
|
||||
|
|
|
@ -155,7 +155,9 @@
|
|||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <paths.h>
|
||||
#ifdef HAVE_PATHS_H
|
||||
# include <paths.h>
|
||||
#endif
|
||||
#include <pwd.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
|
Loading…
Reference in New Issue