1
0
Fork 0

added all

This commit is contained in:
Frank Celler 2012-07-04 22:54:04 +02:00
parent 795b2a9178
commit 0b7c4ecee2
1 changed files with 4 additions and 1 deletions

View File

@ -169,8 +169,11 @@ Handler::status_e RequestStatisticsHandler::execute () {
if (l == "current") { if (l == "current") {
length = 0; length = 0;
} }
else if (l == "all" || l == "*") {
length = -1;
}
else { else {
length = StringUtils::uint32(l); length = StringUtils::int32(l);
} }
} }
else { else {