libnm: fix NM_SETTING_DIFF_RESULT_IN_B_DEFAULT flag for nm_setting_diff()

This is public API, but if it was used, it was very wrong.
Cannot help but fix it.

Fixes: 68bc95c12f
This commit is contained in:
Thomas Haller 2019-01-09 16:06:40 +01:00
parent 157644f200
commit 20a738c92f

View file

@ -270,7 +270,7 @@ typedef enum {
NM_SETTING_DIFF_RESULT_IN_A = 0x00000001,
NM_SETTING_DIFF_RESULT_IN_B = 0x00000002,
NM_SETTING_DIFF_RESULT_IN_A_DEFAULT = 0x00000004,
NM_SETTING_DIFF_RESULT_IN_B_DEFAULT = 0x00000004,
NM_SETTING_DIFF_RESULT_IN_B_DEFAULT = 0x00000008,
} NMSettingDiffResult;
gboolean nm_setting_diff (NMSetting *a,