diff options
author | Werner Koch <wk@gnupg.org> | 2011-01-24 18:16:03 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2011-01-24 18:16:03 +0100 |
commit | b9958bba10f40a348d40c173701d15cb6b0a7f66 (patch) | |
tree | 70e501eab1a8276bd94b162ef6e6c77bcb1d5760 | |
parent | Fix ECDH configure test (diff) | |
download | gnupg2-b9958bba10f40a348d40c173701d15cb6b0a7f66.tar.xz gnupg2-b9958bba10f40a348d40c173701d15cb6b0a7f66.zip |
Fix another stupid bug ECDH detection bug
Again reported by Johan van Selst. Let's see whether this one is
okay.
-rw-r--r-- | include/cipher.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cipher.h b/include/cipher.h index 03d38da5b..311020857 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -23,7 +23,7 @@ #include <gcrypt.h> /* Macros for compatibility with older libgcrypt versions. */ -#ifndef HAVE_GCRY_PK_ECDSA +#ifndef HAVE_GCRY_PK_ECDH # define GCRY_PK_ECDH 302 #endif |