This is the mail archive of the lvm2-cvs@sourceware.org mailing list for the LVM2 project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

LVM2/libdm libdm-report.c


CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	agk@sourceware.org	2009-01-10 03:14:24

Modified files:
	libdm          : libdm-report.c 

Log message:
	Add <report_type>_all to help text.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/libdm/libdm-report.c.diff?cvsroot=lvm2&r1=1.27&r2=1.28

--- LVM2/libdm/libdm-report.c	2009/01/10 03:01:35	1.27
+++ LVM2/libdm/libdm-report.c	2009/01/10 03:14:24	1.28
@@ -254,6 +254,11 @@
 		if (strlen(rh->fields[f].id) > id_len)
 			id_len = strlen(rh->fields[f].id);
 
+
+	for (type = rh->types; type->data_fn; type++)
+		if (strlen(type->prefix) + 3 > id_len)
+			id_len = strlen(type->prefix) + 3;
+
 	for (f = 0; rh->fields[f].report_fn; f++) {
 		if ((type = _find_type(rh, rh->fields[f].type)) && type->desc)
 			desc = type->desc;
@@ -266,6 +271,9 @@
 			log_warn("%*.*s", (int) strlen(desc) + 7,
 				 (int) strlen(desc) + 7,
 				 "-------------------------------------------------------------------------------");
+			log_warn("  %sall%-*s - %s", type->prefix,
+				 (int) (id_len - 3 - strlen(type->prefix)), "",
+				 "All fields in this section.");
 		}
 
 		/* FIXME Add line-wrapping at terminal width (or 80 cols) */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]