Skip to content

Commit b7368fe

Browse files
petkcmb69
authored andcommitted
Add missing autoconf m4 quotes
Two macro calls were missing quotes and in order to be able to run the autoupdate script, this patch adds them.
1 parent eb41eba commit b7368fe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

acinclude.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1725,15 +1725,15 @@ int main(int argc, char *argv[])
17251725
],
17261726
[_cv_have_broken_glibc_fopen_append=no],
17271727
[_cv_have_broken_glibc_fopen_append=yes ],
1728-
AC_TRY_COMPILE([
1728+
[AC_TRY_COMPILE([
17291729
#include <features.h>
17301730
],[
17311731
#if !__GLIBC_PREREQ(2,2)
17321732
choke me
17331733
#endif
17341734
],
17351735
[_cv_have_broken_glibc_fopen_append=yes],
1736-
[_cv_have_broken_glibc_fopen_append=no ])
1736+
[_cv_have_broken_glibc_fopen_append=no ])]
17371737
)])
17381738
17391739
if test "$_cv_have_broken_glibc_fopen_append" = "yes"; then

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ dnl Also check for working getaddrinfo
689689
AC_CACHE_CHECK([for getaddrinfo], ac_cv_func_getaddrinfo,
690690
[AC_TRY_LINK([#include <netdb.h>],
691691
[struct addrinfo *g,h;g=&h;getaddrinfo("","",g,&g);],
692-
AC_TRY_RUN([
692+
[AC_TRY_RUN([
693693
#include <netdb.h>
694694
#include <sys/types.h>
695695
#ifndef AF_INET
@@ -725,7 +725,7 @@ int main(void) {
725725
freeaddrinfo(ai);
726726
exit(0);
727727
}
728-
],ac_cv_func_getaddrinfo=yes, ac_cv_func_getaddrinfo=no, ac_cv_func_getaddrinfo=no),
728+
],ac_cv_func_getaddrinfo=yes, ac_cv_func_getaddrinfo=no, ac_cv_func_getaddrinfo=no)],
729729
ac_cv_func_getaddrinfo=no)])
730730
if test "$ac_cv_func_getaddrinfo" = yes; then
731731
AC_DEFINE(HAVE_GETADDRINFO,1,[Define if you have the getaddrinfo function])

0 commit comments

Comments
 (0)