summaryrefslogtreecommitdiff
path: root/kexdh.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2020-05-08 05:13:14 +0000
committerDamien Miller <djm@mindrot.org>2020-05-27 10:09:18 +1000
commitecb2c02d994b3e21994f31a70ff911667c262f1f (patch)
treeab423f815688f41e6209c35a51ddba9d9eabcc0a /kexdh.c
parent3ab6fccc3935e9b778ff52f9c8d40f215d58e01d (diff)
upstream: fix compilation with DEBUG_KEXDH; bz#3160 ok dtucker@
OpenBSD-Commit-ID: 832e771948fb45f2270e8b8895aac36d176ba17a
Diffstat (limited to 'kexdh.c')
-rw-r--r--kexdh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kexdh.c b/kexdh.c
index 67133e339..6e0159f9f 100644
--- a/kexdh.c
+++ b/kexdh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kexdh.c,v 1.32 2019/01/21 10:40:11 djm Exp $ */ 1/* $OpenBSD: kexdh.c,v 1.33 2020/05/08 05:13:14 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2019 Markus Friedl. All rights reserved. 3 * Copyright (c) 2019 Markus Friedl. All rights reserved.
4 * 4 *
@@ -42,6 +42,7 @@
42#include "digest.h" 42#include "digest.h"
43#include "ssherr.h" 43#include "ssherr.h"
44#include "dh.h" 44#include "dh.h"
45#include "log.h"
45 46
46int 47int
47kex_dh_keygen(struct kex *kex) 48kex_dh_keygen(struct kex *kex)