1
0
Fork 0

fix #224, support more than 2G on 64bit arch

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@672 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 14 years ago
parent 315914c5d4
commit d525f2b070

@ -3303,7 +3303,7 @@ static int xc_config_long(zend_ulong *p, char *name, char *default_value) /* {{{
value = default_value;
}
*p = zend_atoi(value, strlen(value));
*p = zend_atol(value, strlen(value));
return SUCCESS;
}
/* }}} */

Loading…
Cancel
Save