aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-09-18 10:12:16 +0000
committerYang Tse <yangsita@gmail.com>2008-09-18 10:12:16 +0000
commitacd637160f4427981c3e096ac9e91f66df551f42 (patch)
treee244f8a68c8f120205941b57bb550180e679ebdf /m4
parentddb2783f9ad794677c5d8b3545110637e599409e (diff)
fix wrong number used in comparison
Diffstat (limited to 'm4')
-rw-r--r--m4/curl-functions.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4
index e78758a07..26ed3960c 100644
--- a/m4/curl-functions.m4
+++ b/m4/curl-functions.m4
@@ -504,7 +504,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETHOSTBYADDR_R], [
AC_DEFINE(HAVE_GETHOSTBYADDR_R_5, 1, [gethostbyaddr_r() takes 5 args])
elif test "$tst_nargs_gethostbyaddr_r" -eq "7"; then
AC_DEFINE(HAVE_GETHOSTBYADDR_R_7, 1, [gethostbyaddr_r() takes 7 args])
- elif test "$tst_nargs_gethostbyaddr_r" -eq "6"; then
+ elif test "$tst_nargs_gethostbyaddr_r" -eq "8"; then
AC_DEFINE(HAVE_GETHOSTBYADDR_R_8, 1, [gethostbyaddr_r() takes 8 args])
fi
#