diff options
Diffstat (limited to 'src/nm-config.c')
| -rw-r--r-- | src/nm-config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nm-config.c b/src/nm-config.c index 87d0c8a7..bc8a3ea5 100644 --- a/src/nm-config.c +++ b/src/nm-config.c @@ -529,9 +529,9 @@ ignore_config_snippet (GKeyFile *keyfile, gboolean is_base_config) /* second, interpret the value as match-spec. */ specs = nm_config_get_match_spec (keyfile, NM_CONFIG_KEYFILE_GROUP_CONFIG, NM_CONFIG_KEYFILE_KEY_CONFIG_ENABLE, NULL); - match_type = nm_match_spec_match_config (specs, - _nm_config_match_nm_version, - _nm_config_match_env); + match_type = nm_match_spec_config (specs, + _nm_config_match_nm_version, + _nm_config_match_env); g_slist_free_full (specs, g_free); return match_type != NM_MATCH_SPEC_MATCH; |