Parcourir la source

Fix mixed user/total quota params

Mészáros Mihály il y a 7 ans
Parent
commit
2c14c76780
2 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 1 0
      ChangeLog
  2. 2 2
      src/apps/relay/mainrelay.c

+ 1 - 0
ChangeLog

@@ -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 <[email protected]>
 Version 4.5.0.7 'dan Eider':

+ 2 - 2
src/apps/relay/mainrelay.c

@@ -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':