summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-09-24 22:07:17 +1000
committerDamien Miller <djm@mindrot.org>2010-09-24 22:07:17 +1000
commit18e1cab1a112052580bbd3f35fbaec15661d098d (patch)
treefe9d0e198aff3d4059bf1f75f60c38196f23d746
parentf7540cd5c4047675d03b2426bb6c32d3ff811bf7 (diff)
- djm@cvs.openbsd.org 2010/09/20 04:54:07
[jpake.c] missing #include
-rw-r--r--ChangeLog3
-rw-r--r--jpake.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ddfd7b357..adfb63d0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,9 @@
20 check that received values are smaller than the group size in the 20 check that received values are smaller than the group size in the
21 disabled and unfinished J-PAKE code. 21 disabled and unfinished J-PAKE code.
22 avoids catastrophic security failure found by Sebastien Martini 22 avoids catastrophic security failure found by Sebastien Martini
23 - djm@cvs.openbsd.org 2010/09/20 04:54:07
24 [jpake.c]
25 missing #include
23 26
2420100910 2720100910
25 - (dtucker) [openbsd-compat/port-linux.c] Check is_selinux_enabled for exact 28 - (dtucker) [openbsd-compat/port-linux.c] Check is_selinux_enabled for exact
diff --git a/jpake.c b/jpake.c
index 38fc255c3..ac9a4bc34 100644
--- a/jpake.c
+++ b/jpake.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: jpake.c,v 1.5 2010/09/20 04:50:53 djm Exp $ */ 1/* $OpenBSD: jpake.c,v 1.6 2010/09/20 04:54:07 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2008 Damien Miller. All rights reserved. 3 * Copyright (c) 2008 Damien Miller. All rights reserved.
4 * 4 *
@@ -45,6 +45,7 @@
45#include "packet.h" 45#include "packet.h"
46#include "dispatch.h" 46#include "dispatch.h"
47#include "log.h" 47#include "log.h"
48#include "misc.h"
48 49
49#include "jpake.h" 50#include "jpake.h"
50#include "schnorr.h" 51#include "schnorr.h"