diff options
author | Damien Miller <djm@mindrot.org> | 2013-12-07 01:38:03 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-12-07 01:38:03 +0100 |
commit | 4260828a2958ebe8c96f66d8301dac53f4cde556 (patch) | |
tree | 7b8749b73ad58170857d9bae696197b1c5ed5d9d /authfile.c | |
parent | - [Makefile.in] Add ed25519 sources (diff) | |
download | openssh-4260828a2958ebe8c96f66d8301dac53f4cde556.tar.xz openssh-4260828a2958ebe8c96f66d8301dac53f4cde556.zip |
- [authfile.c] Conditionalise inclusion of util.h
Diffstat (limited to 'authfile.c')
-rw-r--r-- | authfile.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/authfile.c b/authfile.c index b0fc23e6a..3bbc7cbb8 100644 --- a/authfile.c +++ b/authfile.c @@ -60,7 +60,9 @@ #include <string.h> #include <unistd.h> +#ifdef HAVE_UTIL_H #include <util.h> +#endif #include "xmalloc.h" #include "cipher.h" |