From 4260828a2958ebe8c96f66d8301dac53f4cde556 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Sat, 7 Dec 2013 11:38:03 +1100 Subject: [PATCH] - [authfile.c] Conditionalise inclusion of util.h --- ChangeLog | 1 + authfile.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3f9fc6afe..9ca70ed18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -36,6 +36,7 @@ - [blocks.c ed25519.c fe25519.c fe25519.h ge25519.c ge25519.h] [ge25519_base.data hash.c sc25519.c sc25519.h verify.c] Fix RCS idents - [Makefile.in] Add ed25519 sources + - [authfile.c] Conditionalise inclusion of util.h 20131205 - (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 @@ #include #include +#ifdef HAVE_UTIL_H #include +#endif #include "xmalloc.h" #include "cipher.h"