summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2019-01-09 16:06:40 +0100
committerThomas Haller <thaller@redhat.com>2019-01-10 13:43:51 +0100
commit20a738c92f8b9cf9a590237e1201867628215d46 (patch)
treeb2a4e5d6f96cdebacd7e8ee1b40c130c9f01a2c7
parent157644f20063d940eed9775cceb2b82302be92d7 (diff)
downloadNetworkManager-20a738c92f8b9cf9a590237e1201867628215d46.tar.gz
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: 68bc95c12f64df1973e7c3f63131cedc6fae280d
-rw-r--r--libnm-core/nm-setting.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm-core/nm-setting.h b/libnm-core/nm-setting.h
index e3c128ffb2..3576bdc663 100644
--- a/libnm-core/nm-setting.h
+++ b/libnm-core/nm-setting.h
@@ -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,