Fix mixed user/total quota params

This commit is contained in:
Mészáros Mihály 2018-05-11 08:00:44 +02:00
parent 3e18581b88
commit 2c14c76780
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ Version 4.5.0.8 'dan Eider':
- Fix for Verbose config file option -v cli option overridea
- Add a Notice to config about realm default value is the domain name.
- Update total allocation usage on client shutdown
- fix total and user quota mix-up
12/10/2017 Oleg Moskalenko <mom040267@gmail.com>
Version 4.5.0.7 'dan Eider':

View File

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