aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorCharles Longeau <github@chl.be>2012-07-21 19:49:20 +0200
committerCharles Longeau <github@chl.be>2012-07-21 19:49:20 +0200
commit3110af5cda6b4bd273bf0a5aba17b42d96932025 (patch)
tree36b371d2d2dbfa864c67fbf5a6664b632ee6cf27 /contrib
parenttry to properly check if -lresolv is needed, thank to failed link reported by Rune Lynge (diff)
downloadOpenSMTPD-3110af5cda6b4bd273bf0a5aba17b42d96932025.tar.xz
OpenSMTPD-3110af5cda6b4bd273bf0a5aba17b42d96932025.zip
unbreak build, reported by Rune Lynge
Diffstat (limited to 'contrib')
-rw-r--r--contrib/lib/libc/asr/asr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/lib/libc/asr/asr.c b/contrib/lib/libc/asr/asr.c
index a6bde7b3..be7904e5 100644
--- a/contrib/lib/libc/asr/asr.c
+++ b/contrib/lib/libc/asr/asr.c
@@ -413,7 +413,7 @@ asr_check_reload(struct asr *asr)
#ifdef HAVE_CLOCK_GETTIME
if (clock_gettime(CLOCK_MONOTONIC, &tp) == -1)
return;
-#elif
+#else
struct timeval tv;
if (gettimeofday(&tv, NULL) == 0)