MINOR: dumpstat/conf: display all the configuration lines that using pattern reference
diff --git a/include/proto/pattern.h b/include/proto/pattern.h
index 4b5afe1..57294d8 100644
--- a/include/proto/pattern.h
+++ b/include/proto/pattern.h
@@ -186,7 +186,7 @@
  */
 void pattern_init_head(struct pattern_head *head);
 void pattern_prune(struct pattern_head *head);
-int pattern_read_from_file(struct pattern_head *head, unsigned int refflags, const char *filename, int patflags, int load_smp, char **err, const char *display, const char *file, int line);
+int pattern_read_from_file(struct pattern_head *head, unsigned int refflags, const char *filename, int patflags, int load_smp, char **err, const char *file, int line);
 
 /*
  * pattern_expr manipulation.
diff --git a/src/acl.c b/src/acl.c
index 2a7435d..ca2a5fc 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -449,11 +449,7 @@
 				goto out_free_expr;
 			}
 
-			/* Create displayed reference */
-			snprintf(trash.str, trash.size, "acl(s) loaded from file '%s'", args[1]);
-			trash.str[trash.size - 1] = '\0';
-
-			if (!pattern_read_from_file(&expr->pat, PAT_REF_ACL, args[1], patflags | PAT_F_FROM_FILE, load_as_map, err, trash.str, file, line))
+			if (!pattern_read_from_file(&expr->pat, PAT_REF_ACL, args[1], patflags | PAT_F_FROM_FILE, load_as_map, err, file, line))
 				goto out_free_expr;
 			is_loaded = 1;
 			args++;
diff --git a/src/map.c b/src/map.c
index 16f86bb..597907d 100644
--- a/src/map.c
+++ b/src/map.c
@@ -152,13 +152,9 @@
 		return 0;
 	}
 
-	/* Build displayed message. */
-	snprintf(trash.str, trash.size, "map(s) loaded from file '%s'", arg[0].data.str.str);
-	trash.str[trash.size - 1] = '\0';
-
 	/* Load map. */
 	if (!pattern_read_from_file(&desc->pat, PAT_REF_MAP, arg[0].data.str.str, 0,
-	                            1, err, trash.str, file, line))
+	                            1, err, file, line))
 		return 0;
 
 	/* The second argument is the default value */
diff --git a/src/pattern.c b/src/pattern.c
index da79c9f..dad2472 100644
--- a/src/pattern.c
+++ b/src/pattern.c
@@ -1972,8 +1972,7 @@
 
 int pattern_read_from_file(struct pattern_head *head, unsigned int refflags,
                            const char *filename, int patflags, int load_smp,
-                           char **err, const char *display, const char *file,
-                           int line)
+                           char **err, const char *file, int line)
 {
 	struct pat_ref *ref;
 	struct pattern_expr *expr;
@@ -1984,7 +1983,11 @@
 
 	/* If the reference doesn't exists, create it and load associated file. */
 	if (!ref) {
-		ref = pat_ref_new(filename, display, refflags);
+		chunk_printf(&trash,
+		             "pattern loaded from file '%s' used by %s at file '%s' line %d",
+		             filename, refflags & PAT_REF_MAP ? "map" : "acl", file, line);
+
+		ref = pat_ref_new(filename, trash.str, refflags);
 		if (!ref) {
 			memprintf(err, "out of memory");
 			return 0;
@@ -2026,6 +2029,17 @@
 			}
 		}
 
+		/* Extends display */
+		chunk_printf(&trash, "%s", ref->display);
+		chunk_appendf(&trash, ", by %s at file '%s' line %d",
+		              refflags & PAT_REF_MAP ? "map" : "acl", file, line);
+		free(ref->display);
+		ref->display = strdup(trash.str);
+		if (!ref->display) {
+			memprintf(err, "out of memory");
+			return 0;
+		}
+
 		/* Merge flags. */
 		ref->flags |= refflags;
 	}