summaryrefslogtreecommitdiffstats
path: root/tools/dmsetup.c
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2011-12-01 14:57:30 +0000
committerAlasdair Kergon <agk@redhat.com>2011-12-01 14:57:30 +0000
commitbc5fe20e33f7c2e54b5156302acb0c2dcb918e9e (patch)
tree4c358407b5d505e0b0c2aeab373bd4ffad377bc9 /tools/dmsetup.c
parent9711057499469ab3d35f877176b345350f66c541 (diff)
downloadlvm2-bc5fe20e33f7c2e54b5156302acb0c2dcb918e9e.tar.gz
lvm2-bc5fe20e33f7c2e54b5156302acb0c2dcb918e9e.tar.xz
lvm2-bc5fe20e33f7c2e54b5156302acb0c2dcb918e9e.zip
update old comment
Diffstat (limited to 'tools/dmsetup.c')
-rw-r--r--tools/dmsetup.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/dmsetup.c b/tools/dmsetup.c
index f35c8a53..7c01bad4 100644
--- a/tools/dmsetup.c
+++ b/tools/dmsetup.c
@@ -2049,6 +2049,11 @@ static void _display_tree_attributes(struct dm_tree_node *node)
_out_char(']');
}
+/* FIXME Display table or status line. (Disallow both?) */
+static void _display_tree_targets(struct dm_tree_node *node, unsigned depth)
+{
+}
+
static void _display_tree_node(struct dm_tree_node *node, unsigned depth,
unsigned first_child __attribute__((unused)),
unsigned last_child, unsigned has_children)
@@ -2109,7 +2114,7 @@ static void _display_tree_node(struct dm_tree_node *node, unsigned depth,
if (TR_PRINT_TARGETS) {
_tree_more[depth + 1] = has_children;
- // FIXME _display_tree_targets(name, depth + 2);
+ _display_tree_targets(node, depth + 2);
}
}