diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | sftp-common.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -30,6 +30,7 @@ | |||
30 | [sftp.c] | 30 | [sftp.c] |
31 | don't append a space after inserting a completion of a directory (i.e. | 31 | don't append a space after inserting a completion of a directory (i.e. |
32 | a path ending in '/') for a slightly better user experience; ok dtucker@ | 32 | a path ending in '/') for a slightly better user experience; ok dtucker@ |
33 | - (dtucker) [sftp-common.c] Wrap include of util.h in an ifdef. | ||
33 | 34 | ||
34 | 20100112 | 35 | 20100112 |
35 | - (dtucker) OpenBSD CVS Sync | 36 | - (dtucker) OpenBSD CVS Sync |
diff --git a/sftp-common.c b/sftp-common.c index 7393fc6a9..96eb4f79a 100644 --- a/sftp-common.c +++ b/sftp-common.c | |||
@@ -36,7 +36,9 @@ | |||
36 | #include <string.h> | 36 | #include <string.h> |
37 | #include <time.h> | 37 | #include <time.h> |
38 | #include <stdarg.h> | 38 | #include <stdarg.h> |
39 | #ifdef HAVE_UTIL_H | ||
39 | #include <util.h> | 40 | #include <util.h> |
41 | #endif | ||
40 | 42 | ||
41 | #include "xmalloc.h" | 43 | #include "xmalloc.h" |
42 | #include "buffer.h" | 44 | #include "buffer.h" |