diff options
author | Damien Miller <djm@mindrot.org> | 2014-07-02 17:43:41 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-07-02 17:43:41 +1000 |
commit | 82b2482ce68654815ee049b9bf021bb362a35ff2 (patch) | |
tree | db87da9540d93e6e3deaac989c600c999177b004 | |
parent | dd8b1dd7933eb6f5652641b0cdced34a387f2e80 (diff) |
- (djm) [sshkey.c] Conditionalise inclusion of util.h
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | sshkey.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -175,6 +175,7 @@ | |||
175 | [regress/unittests/sshkey/testdata/rsa_n] | 175 | [regress/unittests/sshkey/testdata/rsa_n] |
176 | [regress/unittests/sshkey/testdata/rsa_n_pw] | 176 | [regress/unittests/sshkey/testdata/rsa_n_pw] |
177 | unit and fuzz tests for new key API | 177 | unit and fuzz tests for new key API |
178 | - (djm) [sshkey.c] Conditionalise inclusion of util.h | ||
178 | 179 | ||
179 | 20140618 | 180 | 20140618 |
180 | - (tim) [openssh/session.c] Work around to get chroot sftp working on UnixWare | 181 | - (tim) [openssh/session.c] Work around to get chroot sftp working on UnixWare |
@@ -39,7 +39,9 @@ | |||
39 | #include <errno.h> | 39 | #include <errno.h> |
40 | #include <stdio.h> | 40 | #include <stdio.h> |
41 | #include <string.h> | 41 | #include <string.h> |
42 | #ifdef HAVE_UTIL_H | ||
42 | #include <util.h> | 43 | #include <util.h> |
44 | #endif /* HAVE_UTIL_H */ | ||
43 | 45 | ||
44 | #include "ssh2.h" | 46 | #include "ssh2.h" |
45 | #include "ssherr.h" | 47 | #include "ssherr.h" |