summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2014-08-19 11:32:34 +1000
committerDamien Miller <djm@mindrot.org>2014-08-19 11:32:34 +1000
commit3f022b5a9477abceeb1bbeab04b055f3cc7ca8f6 (patch)
tree664d53b7b0f3587553c3d057d8f7fab47fc8d975
parent88137902632aceb923990e98cf5dc923bb3ef2f5 (diff)
downloadopenssh-git-3f022b5a9477abceeb1bbeab04b055f3cc7ca8f6.tar.gz
- (djm) [ssh-dss.c] Include openssl/dsa.h for DSA_SIG
-rw-r--r--ChangeLog1
-rw-r--r--ssh-dss.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a9bef01c..3072f886 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
20140819
- (djm) [serverloop.c] Fix syntax error on Cygwin; from Corinna Vinschen
- (djm) [sshbuf.h] Fix compilation on systems without OPENSSL_HAS_ECC.
+ - (djm) [ssh-dss.c] Include openssl/dsa.h for DSA_SIG
20140811
- (djm) [myproposal.h] Make curve25519 KEX dependent on
diff --git a/ssh-dss.c b/ssh-dss.c
index 02d1ec2d..9643d90d 100644
--- a/ssh-dss.c
+++ b/ssh-dss.c
@@ -28,6 +28,7 @@
#include <sys/types.h>
#include <openssl/bn.h>
+#include <openssl/dsa.h>
#include <openssl/evp.h>
#include <stdarg.h>