Revert "fix quota options"

This reverts commit 59ee141ff0.
This commit is contained in:
Mészáros Mihály 2018-05-11 07:55:21 +02:00
parent 82ec5017a3
commit 3e18581b88

View File

@ -1247,11 +1247,11 @@ static void set_option(int c, char *value)
case 'r':
set_default_realm_name(value);
break;
case 'Q':
case 'q':
turn_params.total_quota = (vint)atoi(value);
get_realm(NULL)->options.perf_options.user_quota = atoi(value);
break;
case 'q':
case 'Q':
turn_params.user_quota = (vint)atoi(value);
get_realm(NULL)->options.perf_options.total_quota = atoi(value);
break;