summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-03-14 08:37:49 +1100
committerDamien Miller <djm@mindrot.org>2010-03-14 08:37:49 +1100
commit47f9a4106a417d57ff784b3a7fcffb803d6df56d (patch)
tree9844cbb0a67c04767cf24d30f10a7ffc6c52afb7
parent4e0cea82dd75199c4a4f59165b1971d0d7c45919 (diff)
- (djm) [ssh-pkcs11-helper.c] Move #ifdef to after #defines to fix
compilation failure when !HAVE_DLOPEN. Reported by felix-mindrot AT fefe.de
-rw-r--r--ChangeLog5
-rw-r--r--ssh-pkcs11-helper.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c6a3fe893..96196fc80 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120100314
2 - (djm) [ssh-pkcs11-helper.c] Move #ifdef to after #defines to fix
3 compilation failure when !HAVE_DLOPEN. Reported by felix-mindrot
4 AT fefe.de
5
120100312 620100312
2 - (tim) [Makefile.in] Now that scard is gone, no need to make $(datadir) 7 - (tim) [Makefile.in] Now that scard is gone, no need to make $(datadir)
3 - (tim) [Makefile.in] Add missing $(EXEEXT) to install targets. 8 - (tim) [Makefile.in] Add missing $(EXEEXT) to install targets.
diff --git a/ssh-pkcs11-helper.c b/ssh-pkcs11-helper.c
index d3bfb9838..8e3f57ace 100644
--- a/ssh-pkcs11-helper.c
+++ b/ssh-pkcs11-helper.c
@@ -17,8 +17,6 @@
17 17
18#include "includes.h" 18#include "includes.h"
19 19
20#ifdef ENABLE_PKCS11
21
22#include <sys/types.h> 20#include <sys/types.h>
23#ifdef HAVE_SYS_TIME_H 21#ifdef HAVE_SYS_TIME_H
24# include <sys/time.h> 22# include <sys/time.h>
@@ -39,6 +37,8 @@
39#include "authfd.h" 37#include "authfd.h"
40#include "ssh-pkcs11.h" 38#include "ssh-pkcs11.h"
41 39
40#ifdef ENABLE_PKCS11
41
42/* borrows code from sftp-server and ssh-agent */ 42/* borrows code from sftp-server and ssh-agent */
43 43
44struct pkcs11_keyinfo { 44struct pkcs11_keyinfo {