ulong total = 0, start = 0, end = 0, len = 0;
if (!strncasecmp(Z_STRVAL_P(c), "bytes", lenof("bytes")) &&
- (Z_STRVAL_P(c)[lenof("bytes")] == '=' || Z_STRVAL_P(c)[lenof("bytes")] == ' ')) {
+ (Z_STRVAL_P(c)[lenof("bytes")] == ':' || Z_STRVAL_P(c)[lenof("bytes")] == ' ')) {
char *total_at = NULL, *end_at = NULL;
- char *start_at = Z_STRVAL_P(c) + lenof("bytes=");
+ char *start_at = Z_STRVAL_P(c) + sizeof("bytes");
start = strtoul(start_at, &end_at, 10);
if (end_at) {