aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2019-11-16 21:58:01 +0000
committerGilles Chehade <gilles@poolp.org>2019-11-16 21:58:01 +0000
commita3d747c350654c52dc5b45d77797d6e0167599db (patch)
tree72eacd58327c5024b2dfed88657b9b99ee25e998
parentfix automake substitutions (diff)
downloadOpenSMTPD-a3d747c350654c52dc5b45d77797d6e0167599db.tar.xz
OpenSMTPD-a3d747c350654c52dc5b45d77797d6e0167599db.zip
fix typo in configure.ac leading to incorrect inclusion of setresuid.c
on systems that do have it, leading to a runtime crash
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f68cd6a0..3da143fe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2006,7 +2006,7 @@ AM_CONDITIONAL([NEED_PW_DUP], [test "x$ac_cv_func_pw_dup" != "xyes"])
AM_CONDITIONAL([NEED_REALLOCARRAY], [test "x$ac_cv_func_reallocarray" != "xyes"])
AM_CONDITIONAL([NEED_RECALLOCARRAY], [test "x$ac_cv_func_recallocarray" != "xyes"])
AM_CONDITIONAL([NEED_SETRESGID], [test "x$ac_cv_func_setresgid" != "xyes"])
-AM_CONDITIONAL([NEED_SETRESUID], [test "x$ac_cv_func_strresuid" != "xyes"])
+AM_CONDITIONAL([NEED_SETRESUID], [test "x$ac_cv_func_setresuid" != "xyes"])
AM_CONDITIONAL([NEED_STRLCAT], [test "x$ac_cv_func_strlcat" != "xyes"])
AM_CONDITIONAL([NEED_STRLCPY], [test "x$ac_cv_func_strlcpy" != "xyes"])
AM_CONDITIONAL([NEED_STRMODE], [test "x$ac_cv_func_strmode" != "xyes"])