diff options
author | Yang Tse <yangsita@gmail.com> | 2007-03-22 14:41:10 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-03-22 14:41:10 +0000 |
commit | 8920606b8bdd79d96aa9c6677259e1f5d044d010 (patch) | |
tree | d12cf487ac8ff116b5d8dd58fddfcc5312c89565 | |
parent | 90ce18019c537bac043fdbc55b91080ad759e0f0 (diff) |
attempt to keep message length below 80 chars
-rw-r--r-- | acinclude.m4 | 4 | ||||
-rw-r--r-- | ares/acinclude.m4 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index ca96acc35..459e1e4ba 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -685,7 +685,7 @@ AC_DEFUN([CURL_CHECK_FUNC_RECV], [ ]) # if test "$curl_cv_recv" = "yes"; then - AC_CACHE_CHECK([types of arguments and return type for recv], + AC_CACHE_CHECK([types of args and return type for recv], [curl_cv_func_recv_args], [ curl_cv_func_recv_args="unknown" for recv_retv in 'int' 'ssize_t'; do @@ -815,7 +815,7 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [ ]) # if test "$curl_cv_send" = "yes"; then - AC_CACHE_CHECK([types of arguments and return type for send], + AC_CACHE_CHECK([types of args and return type for send], [curl_cv_func_send_args], [ curl_cv_func_send_args="unknown" for send_retv in 'int' 'ssize_t'; do diff --git a/ares/acinclude.m4 b/ares/acinclude.m4 index bd5e24d0e..33ee8d136 100644 --- a/ares/acinclude.m4 +++ b/ares/acinclude.m4 @@ -663,7 +663,7 @@ AC_DEFUN([CURL_CHECK_FUNC_RECV], [ ]) # if test "$curl_cv_recv" = "yes"; then - AC_CACHE_CHECK([types of arguments and return type for recv], + AC_CACHE_CHECK([types of args and return type for recv], [curl_cv_func_recv_args], [ curl_cv_func_recv_args="unknown" for recv_retv in 'int' 'ssize_t'; do @@ -793,7 +793,7 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [ ]) # if test "$curl_cv_send" = "yes"; then - AC_CACHE_CHECK([types of arguments and return type for send], + AC_CACHE_CHECK([types of args and return type for send], [curl_cv_func_send_args], [ curl_cv_func_send_args="unknown" for send_retv in 'int' 'ssize_t'; do |