auth_form_config_rec *conf = config;
apr_off_t size;
- if (APR_SUCCESS != apr_strtoff(&size, arg, NULL, 0)
+ if (APR_SUCCESS != apr_strtoff(&size, arg, NULL, 10)
|| size < 0 || size > APR_SIZE_MAX) {
return "AuthCookieFormSize must be a size in bytes, or zero.";
}
{
disk_cache_dir_conf *dconf = (disk_cache_dir_conf *)in_struct_ptr;
- if (apr_strtoff(&dconf->minfs, arg, NULL, 0) != APR_SUCCESS ||
+ if (apr_strtoff(&dconf->minfs, arg, NULL, 10) != APR_SUCCESS ||
dconf->minfs < 0)
{
return "CacheMinFileSize argument must be a non-negative integer representing the min size of a file to cache in bytes.";
{
disk_cache_dir_conf *dconf = (disk_cache_dir_conf *)in_struct_ptr;
- if (apr_strtoff(&dconf->maxfs, arg, NULL, 0) != APR_SUCCESS ||
+ if (apr_strtoff(&dconf->maxfs, arg, NULL, 10) != APR_SUCCESS ||
dconf->maxfs < 0)
{
return "CacheMaxFileSize argument must be a non-negative integer representing the max size of a file to cache in bytes.";
{
disk_cache_dir_conf *dconf = (disk_cache_dir_conf *)in_struct_ptr;
- if (apr_strtoff(&dconf->readsize, arg, NULL, 0) != APR_SUCCESS ||
+ if (apr_strtoff(&dconf->readsize, arg, NULL, 10) != APR_SUCCESS ||
dconf->readsize < 0)
{
return "CacheReadSize argument must be a non-negative integer representing the max amount of data to cache in go.";
disk_cache_dir_conf *dconf = (disk_cache_dir_conf *)in_struct_ptr;
apr_off_t milliseconds;
- if (apr_strtoff(&milliseconds, arg, NULL, 0) != APR_SUCCESS ||
+ if (apr_strtoff(&milliseconds, arg, NULL, 10) != APR_SUCCESS ||
milliseconds < 0)
{
return "CacheReadTime argument must be a non-negative integer representing the max amount of time taken to cache in go.";
static const char *set_buffer_size(cmd_parms *cmd, void *dconf, const char *arg) {
buffer_conf *conf = dconf;
- if (APR_SUCCESS != apr_strtoff(&(conf->size), arg, NULL, 0) || conf->size
+ if (APR_SUCCESS != apr_strtoff(&(conf->size), arg, NULL, 10) || conf->size
<= 0) {
return "BufferSize must be a size in bytes, and greater than zero";
}
request_dir_conf *conf = dconf;
char *end = NULL;
- if (APR_SUCCESS != apr_strtoff(&(conf->keep_body), arg, &end, 0)
+ if (APR_SUCCESS != apr_strtoff(&(conf->keep_body), arg, &end, 10)
|| conf->keep_body < 0 || end) {
return "KeptBodySize must be a valid size in bytes, or zero.";
}
return err;
}
- value = strtol(arg, NULL, 0);
+ value = strtol(arg, NULL, 10);
if (value < 0 || errno == ERANGE)
return apr_pstrcat(cmd->pool, "Invalid MaxMemFree value: ",
arg, NULL);
return err;
}
- value = strtol(arg, NULL, 0);
+ value = strtol(arg, NULL, 10);
if (value < 0 || errno == ERANGE)
return apr_pstrcat(cmd->pool, "Invalid ThreadStackSize value: ",
arg, NULL);