diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2016-11-06 12:33:24 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2016-11-06 12:39:45 +0100 |
commit | cff7882391065a8fe4b987361b2d46f8d5137f1b (patch) | |
tree | 6055d6e03ac2804a4d0fa28bb2cd93b2117f364e | |
parent | 5d1a8cd88b396e895fdda9059a3795303747aaa3 (diff) | |
download | libssh-cff7882391065a8fe4b987361b2d46f8d5137f1b.tar.gz libssh-cff7882391065a8fe4b987361b2d46f8d5137f1b.tar.xz libssh-cff7882391065a8fe4b987361b2d46f8d5137f1b.zip |
log: Add missing config.h include
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r-- | src/log.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -21,6 +21,8 @@ * MA 02111-1307, USA. */ +#include "config.h" + #include <stdio.h> #include <stdarg.h> #include <string.h> @@ -29,7 +31,7 @@ #endif /* HAVE_SYS_TIME_H */ #ifdef HAVE_SYS_UTIME_H #include <sys/utime.h> -#endif /* HAVE_SYS_TIME_H */ +#endif /* HAVE_SYS_UTIME_H */ #include <time.h> #include "libssh/priv.h" |