diff options
| author | Michael Biebl <biebl@debian.org> | 2024-05-31 23:13:23 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-05-31 23:13:23 +0200 |
| commit | da8adc8ce98d973ff7dcfc6f8946a98c9954ce26 (patch) | |
| tree | 1857c63fe4c7026722826c6b49b7da079135452c /src/core/nm-config-data.c | |
| parent | 41e9c69453b16f5a615ca0896da4bdaeffef569e (diff) | |
| parent | baef747c9365b6044db3c2dfbb859652bdde1d76 (diff) | |
Update upstream source from tag 'upstream/1.48.0'
Update to upstream version '1.48.0' with Debian dir 63138a4bffa35eb63c7add34fedbf5a28717017e
Diffstat (limited to 'src/core/nm-config-data.c')
| -rw-r--r-- | src/core/nm-config-data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/nm-config-data.c b/src/core/nm-config-data.c index d4498edd..5b330f24 100644 --- a/src/core/nm-config-data.c +++ b/src/core/nm-config-data.c @@ -849,7 +849,7 @@ nm_config_data_log(const NMConfigData *self, /* We require that the default values are grouped by their "group". * That is, all default values for a certain "group" are close to * each other in the list. Assert for that. */ - for (g2 = g + 1; g2 < groups_full->len; g2++) { + for (g2 = g + 1; g2 < G_N_ELEMENTS(default_values); g2++) { nm_assert(!nm_streq(default_values[g - 1].group, default_values[g2].group)); } } |