From 71dbe47619794ed673a892f533c348a472411195 Mon Sep 17 00:00:00 2001
From: Peter Rajnoha <prajnoha@redhat.com>
Date: Mon, 3 Aug 2015 16:47:02 +0200
Subject: [PATCH] report: update comment for _is_same_field fn

---
 libdm/libdm-report.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/libdm/libdm-report.c b/libdm/libdm-report.c
index 64ba0330b..5b943117b 100644
--- a/libdm/libdm-report.c
+++ b/libdm/libdm-report.c
@@ -845,9 +845,10 @@ static int _get_canonical_field_name(const char *field,
 }
 
 /*
- * Compare name1 against name2 or prefix plus name2
- * name2 is not necessarily null-terminated.
- * len2 is the length of name2.
+ * Compare canonical_name1 against canonical_name2 or prefix
+ * plus canonical_name2. Canonical name is a name where all
+ * superfluous characters are removed (underscores for now).
+ * Both names are always null-terminated.
  */
 static int _is_same_field(const char *canonical_name1, const char *canonical_name2,
 			  const char *prefix)