summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--authfile.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3f9fc6afe..9ca70ed18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -36,6 +36,7 @@
36 - [blocks.c ed25519.c fe25519.c fe25519.h ge25519.c ge25519.h] 36 - [blocks.c ed25519.c fe25519.c fe25519.h ge25519.c ge25519.h]
37 [ge25519_base.data hash.c sc25519.c sc25519.h verify.c] Fix RCS idents 37 [ge25519_base.data hash.c sc25519.c sc25519.h verify.c] Fix RCS idents
38 - [Makefile.in] Add ed25519 sources 38 - [Makefile.in] Add ed25519 sources
39 - [authfile.c] Conditionalise inclusion of util.h
39 40
4020131205 4120131205
41 - (djm) OpenBSD CVS Sync 42 - (djm) OpenBSD CVS Sync
diff --git a/authfile.c b/authfile.c
index b0fc23e6a..3bbc7cbb8 100644
--- a/authfile.c
+++ b/authfile.c
@@ -60,7 +60,9 @@
60#include <string.h> 60#include <string.h>
61#include <unistd.h> 61#include <unistd.h>
62 62
63#ifdef HAVE_UTIL_H
63#include <util.h> 64#include <util.h>
65#endif
64 66
65#include "xmalloc.h" 67#include "xmalloc.h"
66#include "cipher.h" 68#include "cipher.h"