- (djm) [sshkey.c] Conditionalise inclusion of util.h
This commit is contained in:
parent
dd8b1dd793
commit
82b2482ce6
|
@ -175,6 +175,7 @@
|
||||||
[regress/unittests/sshkey/testdata/rsa_n]
|
[regress/unittests/sshkey/testdata/rsa_n]
|
||||||
[regress/unittests/sshkey/testdata/rsa_n_pw]
|
[regress/unittests/sshkey/testdata/rsa_n_pw]
|
||||||
unit and fuzz tests for new key API
|
unit and fuzz tests for new key API
|
||||||
|
- (djm) [sshkey.c] Conditionalise inclusion of util.h
|
||||||
|
|
||||||
20140618
|
20140618
|
||||||
- (tim) [openssh/session.c] Work around to get chroot sftp working on UnixWare
|
- (tim) [openssh/session.c] Work around to get chroot sftp working on UnixWare
|
||||||
|
|
2
sshkey.c
2
sshkey.c
|
@ -39,7 +39,9 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#ifdef HAVE_UTIL_H
|
||||||
#include <util.h>
|
#include <util.h>
|
||||||
|
#endif /* HAVE_UTIL_H */
|
||||||
|
|
||||||
#include "ssh2.h"
|
#include "ssh2.h"
|
||||||
#include "ssherr.h"
|
#include "ssherr.h"
|
||||||
|
|
Loading…
Reference in New Issue