- (dtucker) [sftp-common.c] Wrap include of util.h in an ifdef.

This commit is contained in:
Darren Tucker 2010-01-13 23:00:38 +11:00
parent 9c3ba07f60
commit 096630d06c
2 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@
[sftp.c]
don't append a space after inserting a completion of a directory (i.e.
a path ending in '/') for a slightly better user experience; ok dtucker@
- (dtucker) [sftp-common.c] Wrap include of util.h in an ifdef.
20100112
- (dtucker) OpenBSD CVS Sync

View File

@ -36,7 +36,9 @@
#include <string.h>
#include <time.h>
#include <stdarg.h>
#ifdef HAVE_UTIL_H
#include <util.h>
#endif
#include "xmalloc.h"
#include "buffer.h"