shared: fix parsing aliases for flags in _nm_utils_enum_from_str_full()

Otherwise, the last alias overwrites previous values.

Fixes: b9fa0e0a19
This commit is contained in:
Thomas Haller 2018-05-29 11:26:11 +02:00
parent daf4ba43da
commit 3c6bd6769b
2 changed files with 3 additions and 2 deletions

View file

@ -6531,7 +6531,8 @@ test_nm_utils_enum (void)
_test_nm_utils_enum_from_str_do_full (color_flags,
"nick-4d,nick-red,nick-5,green,nick-red",
TRUE,
NM_TEST_GENERAL_COLOR_FLAGS_RED,
0x4D
| NM_TEST_GENERAL_COLOR_FLAGS_GREEN,
NULL,
color_value_infos);

View file

@ -243,7 +243,7 @@ _nm_utils_enum_from_str_full (GType type,
else {
nick = _find_value_info (value_infos, s);
if (nick)
uvalue = (unsigned) nick->value;
uvalue |= (unsigned) nick->value;
else {
ret = FALSE;
break;