summaryrefslogtreecommitdiffstats
path: root/crypto.h
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2005-12-29 07:47:47 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2005-12-29 07:47:47 +0000
commite5d281cf2fb283478a60948b2fda69488c0ad75b (patch)
tree118270c8c3a237472610f2ecde7d92fd7f14a215 /crypto.h
parentcbc0dada77ee730c7e2321f3c9b19d6df1e205cc (diff)
downloadopenvpn-e5d281cf2fb283478a60948b2fda69488c0ad75b.tar.gz
openvpn-e5d281cf2fb283478a60948b2fda69488c0ad75b.tar.xz
openvpn-e5d281cf2fb283478a60948b2fda69488c0ad75b.zip
Fixed bug with tls-auth and key-direction parameter
which was introduced in r844. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@865 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'crypto.h')
-rw-r--r--crypto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto.h b/crypto.h
index e658e73..208ff23 100644
--- a/crypto.h
+++ b/crypto.h
@@ -369,11 +369,11 @@ void openssl_dmalloc_init (void);
#ifdef USE_SSL
-#define GHK_KEY_DIR (1<<0)
-#define GHK_INLINE (1<<1)
+#define GHK_INLINE (1<<0)
void get_tls_handshake_key (const struct key_type *key_type,
struct key_ctx_bi *ctx,
const char *passphrase_file,
+ const int key_direction,
const unsigned int flags);
#else