[Libosinfo] [libosinfo PATCH v2 2/8] db: Rename os_* to os_treeinfo_* in guess_os_from_tree()
Fabiano Fidêncio
fidencio at redhat.com
Thu Mar 28 21:26:08 UTC 2019
It'll make clear that we're dealing with the treeinfo attributes and not
with the tree ones.
https://gitlab.com/libosinfo/libosinfo/issues/20
Signed-off-by: Fabiano Fidêncio <fidencio at redhat.com>
Reviewed-by: Cole Robinson <crobinso at redhat.com>
---
osinfo/osinfo_db.c | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/osinfo/osinfo_db.c b/osinfo/osinfo_db.c
index 3795903..136cf79 100644
--- a/osinfo/osinfo_db.c
+++ b/osinfo/osinfo_db.c
@@ -785,23 +785,23 @@ OsinfoOs *osinfo_db_guess_os_from_tree(OsinfoDb *db,
for (tree_iter = trees; tree_iter; tree_iter = tree_iter->next) {
OsinfoTree *os_tree = OSINFO_TREE(tree_iter->data);
- const gchar *os_family;
- const gchar *os_variant;
- const gchar *os_version;
- const gchar *os_arch;
+ const gchar *os_treeinfo_family;
+ const gchar *os_treeinfo_variant;
+ const gchar *os_treeinfo_version;
+ const gchar *os_treeinfo_arch;
if (!osinfo_tree_has_treeinfo(os_tree))
continue;
- os_family = osinfo_tree_get_treeinfo_family(os_tree);
- os_variant = osinfo_tree_get_treeinfo_variant(os_tree);
- os_version = osinfo_tree_get_treeinfo_version(os_tree);
- os_arch = osinfo_tree_get_treeinfo_arch(os_tree);
+ os_treeinfo_family = osinfo_tree_get_treeinfo_family(os_tree);
+ os_treeinfo_variant = osinfo_tree_get_treeinfo_variant(os_tree);
+ os_treeinfo_version = osinfo_tree_get_treeinfo_version(os_tree);
+ os_treeinfo_arch = osinfo_tree_get_treeinfo_arch(os_tree);
- if (match_regex(os_family, treeinfo_family) &&
- match_regex(os_variant, treeinfo_variant) &&
- match_regex(os_version, treeinfo_version) &&
- match_regex(os_arch, treeinfo_arch)) {
+ if (match_regex(os_treeinfo_family, treeinfo_family) &&
+ match_regex(os_treeinfo_variant, treeinfo_variant) &&
+ match_regex(os_treeinfo_version, treeinfo_version) &&
+ match_regex(os_treeinfo_arch, treeinfo_arch)) {
ret = os;
if (matched_tree != NULL)
*matched_tree = os_tree;
--
2.20.1
More information about the Libosinfo
mailing list