Browse Source

Enable build without atoll (e.g old AIX flavours)

pull/743/head
Lior Kaplan 12 years ago
parent
commit
84673485f5
  1. 4
      main/rfc1867.c

4
main/rfc1867.c

@ -903,7 +903,11 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) /* {{{ */
}
if (!strcasecmp(param, "MAX_FILE_SIZE")) {
#ifdef HAVE_ATOLL
max_file_size = atoll(value);
#else
max_file_size = strtoll(value, NULL, 10);
#endif
}
efree(param);

Loading…
Cancel
Save