diff options
author | Damien Miller <djm@mindrot.org> | 2015-05-21 17:55:15 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-05-21 17:55:15 +1000 |
commit | e97201feca10b5196da35819ae516d0b87cf3a50 (patch) | |
tree | f47c5e10665b84d4d650b5f29050f17436c7da12 /ssh-agent.c | |
parent | 13640798c7dd011ece0a7d02841fe48e94cfa0e0 (diff) |
conditionalise util.h inclusion
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 9e2a37fae..34b19b754 100644 --- a/ssh-agent.c +++ b/ssh-agent.c | |||
@@ -68,7 +68,9 @@ | |||
68 | #include <time.h> | 68 | #include <time.h> |
69 | #include <string.h> | 69 | #include <string.h> |
70 | #include <unistd.h> | 70 | #include <unistd.h> |
71 | #include <util.h> | 71 | #ifdef HAVE_UTIL_H |
72 | # include <util.h> | ||
73 | #endif | ||
72 | 74 | ||
73 | #include "key.h" /* XXX for typedef */ | 75 | #include "key.h" /* XXX for typedef */ |
74 | #include "buffer.h" /* XXX for typedef */ | 76 | #include "buffer.h" /* XXX for typedef */ |