mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [openbsd-compat/getrrsetbyname.c] Check that HAVE_DECL_H_ERROR
is defined before using.
This commit is contained in:
parent
b6db172a79
commit
cc2685577b
|
@ -38,6 +38,8 @@
|
|||
UsePAM section. Parts from djm@ and jmc@.
|
||||
- (dtucker) [auth-pam.c scard-opensc.c] Tinderbox says auth-pam.c uses
|
||||
readpass.h, grep says scard-opensc.c does too. Replace with misc.h.
|
||||
- (dtucker) [openbsd-compat/getrrsetbyname.c] Check that HAVE_DECL_H_ERROR
|
||||
is defined before using.
|
||||
|
||||
20040502
|
||||
- (dtucker) OpenBSD CVS Sync
|
||||
|
@ -1114,4 +1116,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.3353 2004/05/13 07:29:35 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.3354 2004/05/13 10:10:38 dtucker Exp $
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
|
||||
#define ANSWER_BUFFER_SIZE 1024*64
|
||||
|
||||
#if !HAVE_DECL_H_ERROR
|
||||
#if defined(HAVE_DECL_H_ERROR) && !HAVE_DECL_H_ERROR
|
||||
extern int h_errno;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue