commit 556a7f36b840e18924e6cb74742f8a89301d2ddd
parent 2b35e3796f91fb8e89b161650aa239497d2bb89a
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 26 Jan 2021 19:24:40 +0100
fix #6725: use modern name
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
@@ -27,6 +27,7 @@
#include <sched.h>
#include <pthread.h>
#include <sys/resource.h>
+#include <limits.h>
#include "taler_mhd_lib.h"
#include "taler-exchange-httpd_auditors.h"
#include "taler-exchange-httpd_deposit.h"
@@ -1067,7 +1068,7 @@ exchange_serve_process_config (void)
"MAX_REQUESTS",
&req_max))
{
- req_max = ULONG_LONG_MAX;
+ req_max = ULLONG_MAX;
}
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_time (TEH_cfg,