summaryrefslogtreecommitdiffstats
path: root/pcilib/xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'pcilib/xml.c')
-rw-r--r--pcilib/xml.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/pcilib/xml.c b/pcilib/xml.c
index b9deed2..b022fd8 100644
--- a/pcilib/xml.c
+++ b/pcilib/xml.c
@@ -578,6 +578,8 @@ static int pcilib_xml_parse_value_name(pcilib_t *ctx, xmlXPathContextPtr xpath,
if (!strcasecmp(name, "name")) {
desc->name = value;
+ } else if (!strcasecmp(name, "description")) {
+ desc->description = value;
} else if (!strcasecmp(name, "value")) {
val = strtol(value, &endptr, 0);
if ((strlen(endptr) > 0)) {