summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2019-07-29 17:11:03 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2019-07-29 17:11:03 +0100
commit237613d06f9e3b90138bef9f3d9f6401bdd378f3 (patch)
tree421152593b7903cf8428190a08b6bdab45586d10
parent14ca5d2ac6c3536fe189435269a302ef14e972cf (diff)
Fix build on OpenBSD
-rw-r--r--src/src/functions.h1
-rw-r--r--src/src/mytypes.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/src/functions.h b/src/src/functions.h
index 6347b231f..060278959 100644
--- a/src/src/functions.h
+++ b/src/src/functions.h
@@ -285,7 +285,6 @@ extern int ip_unixsocket(const uschar *, uschar **);
extern int ip_streamsocket(const uschar *, uschar **, int);
extern int ipv6_nmtoa(int *, uschar *);
-extern BOOL is_tainted_fn(const void *);
extern uschar *local_part_quote(uschar *);
extern int log_create(uschar *);
diff --git a/src/src/mytypes.h b/src/src/mytypes.h
index f7551336c..37b5a9ab7 100644
--- a/src/src/mytypes.h
+++ b/src/src/mytypes.h
@@ -138,6 +138,7 @@ is_tainted(const void * p)
return FALSE;
#elif defined(TAINT_CHECK_SLOW)
+extern BOOL is_tainted_fn(const void *);
return is_tainted_fn(p);
#else