diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-01-26 19:24:40 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-01-26 19:24:40 +0100 |
commit | 556a7f36b840e18924e6cb74742f8a89301d2ddd (patch) | |
tree | 60d19a0ea38e2e1cb64ca7aece8d7700e6a3541a /src | |
parent | 2b35e3796f91fb8e89b161650aa239497d2bb89a (diff) |
fix #6725: use modern name
Diffstat (limited to 'src')
-rw-r--r-- | src/exchange/taler-exchange-httpd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index eb9d7c46b..4208e4ca8 100644 --- 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, |