# HG changeset patch # User Richard M. Stallman # Date 875766806 0 # Node ID 11f33d684e3e6c9cb3d0112e315d7fe7f54256bc # Parent 027030dd12c49c1d031564094219ad57b9d117dc (gettimeofday, one arg or two): Clarify messages by avoiding double negative. diff -r 027030dd12c4 -r 11f33d684e3e configure.in --- a/configure.in Thu Oct 02 03:12:38 1997 +0000 +++ b/configure.in Thu Oct 02 04:33:26 1997 +0000 @@ -1658,7 +1658,7 @@ fi if test "x$HAVE_TIMEVAL" = xyes; then -AC_MSG_CHECKING(whether gettimeofday can't accept two arguments) +AC_MSG_CHECKING(whether gettimeofday can accept two arguments) AC_TRY_LINK([ #ifdef TIME_WITH_SYS_TIME #include @@ -1676,8 +1676,8 @@ struct timezone dummy; gettimeofday (&time, &dummy); ], - [AC_MSG_RESULT(no)], - [AC_MSG_RESULT(yes) + [AC_MSG_RESULT(yes)], + [AC_MSG_RESULT(no) AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT)]) fi