mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Look at the right variable when warning about signed size_t.
In81d69f4c2d
(0.2.21-alpha) we added a compile-time check for a (totally broken) signed size_t. In0e597471af
(not yet released) I switched to a better configure-time check, which stored its output in a different variable. I didn't change the code which looked at the output, however. This bug is not in any released version of Tor, and would not affect anybody with a working Tor.
This commit is contained in:
parent
ef4db31693
commit
051b1e8ac4
@ -980,7 +980,7 @@ AX_CHECK_SIGN([size_t],
|
||||
#endif
|
||||
])
|
||||
|
||||
if test "$tor_cv_size_t_signed" = yes; then
|
||||
if test "$ax_cv_decl_size_t_signed" = yes; then
|
||||
AC_MSG_ERROR([You have a signed size_t; that's grossly nonconformant.])
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user