diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | openbsd-compat/getrrsetbyname.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -40,6 +40,8 @@ | |||
40 | readpass.h, grep says scard-opensc.c does too. Replace with misc.h. | 40 | readpass.h, grep says scard-opensc.c does too. Replace with misc.h. |
41 | - (dtucker) [openbsd-compat/getrrsetbyname.c] Check that HAVE_DECL_H_ERROR | 41 | - (dtucker) [openbsd-compat/getrrsetbyname.c] Check that HAVE_DECL_H_ERROR |
42 | is defined before using. | 42 | is defined before using. |
43 | - (dtucker) [openbsd-compat/getrrsetbyname.c] Fix typo too: HAVE_DECL_H_ERROR | ||
44 | -> HAVE_DECL_H_ERRNO. | ||
43 | 45 | ||
44 | 20040502 | 46 | 20040502 |
45 | - (dtucker) OpenBSD CVS Sync | 47 | - (dtucker) OpenBSD CVS Sync |
@@ -1116,4 +1118,4 @@ | |||
1116 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 1118 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
1117 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 1119 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
1118 | 1120 | ||
1119 | $Id: ChangeLog,v 1.3354 2004/05/13 10:10:38 dtucker Exp $ | 1121 | $Id: ChangeLog,v 1.3355 2004/05/13 10:24:10 dtucker Exp $ |
diff --git a/openbsd-compat/getrrsetbyname.c b/openbsd-compat/getrrsetbyname.c index 154cc29b0..660427c1f 100644 --- a/openbsd-compat/getrrsetbyname.c +++ b/openbsd-compat/getrrsetbyname.c | |||
@@ -53,7 +53,7 @@ | |||
53 | 53 | ||
54 | #define ANSWER_BUFFER_SIZE 1024*64 | 54 | #define ANSWER_BUFFER_SIZE 1024*64 |
55 | 55 | ||
56 | #if defined(HAVE_DECL_H_ERROR) && !HAVE_DECL_H_ERROR | 56 | #if defined(HAVE_DECL_H_ERRNO) && !HAVE_DECL_H_ERRNO |
57 | extern int h_errno; | 57 | extern int h_errno; |
58 | #endif | 58 | #endif |
59 | 59 | ||