summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-04-24 09:05:25 +0200
committerThomas Haller <thaller@redhat.com>2020-04-24 10:09:50 +0200
commit3a2858a2fddfa306f9b37ed02055eb75c7f89dea (patch)
treeef63ecd14ad109d8ecb7b42110dbd5740c034444
parentbdb1d71cfa0ef3feb8c6be2d60f84c963fd5d30b (diff)
downloadNetworkManager-3a2858a2fddfa306f9b37ed02055eb75c7f89dea.tar.gz
ifcfg-rh/trivial: drop comment for nms_ifcfg_well_known_keys
The comment isn't right. The fixed array size is in the header file, because other parts of the code need to know how many elements are in the array. The alternative would be a define for the size, but that is only redundant information. Also, even with a define the user who adds an entry needs to adjust the code in the header. Explicitly stating the array size in the header makes it almost impossible to accidentally choosing the wrong size, because the compiler (and unit tests) ensure the consistency.
-rw-r--r--src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h b/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h
index 25a5c0ac73..e6343e1dcd 100644
--- a/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h
+++ b/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h
@@ -33,7 +33,6 @@ typedef struct {
NMSIfcfgKeyTypeFlags key_flags;
} NMSIfcfgKeyTypeInfo;
-/* maybe think about getting rid of the fixed number below at some point.*/
extern const NMSIfcfgKeyTypeInfo nms_ifcfg_well_known_keys[233];
const NMSIfcfgKeyTypeInfo *nms_ifcfg_well_known_key_find_info (const char *key, gssize *out_idx);