summaryrefslogtreecommitdiffstats
path: root/liblvm
diff options
context:
space:
mode:
authorDave Wysochanski <dwysocha@redhat.com>2009-07-26 16:06:21 +0000
committerDave Wysochanski <dwysocha@redhat.com>2009-07-26 16:06:21 +0000
commit1efda0fbb95c71854ec4fa90fe88062d67281eef (patch)
tree4bda35d263d0ea069c410fbe71dddbecde4e429c /liblvm
parent0185663b882ed88155420c45da8b30bdd2d756d3 (diff)
downloadlvm2-1efda0fbb95c71854ec4fa90fe88062d67281eef.tar.gz
lvm2-1efda0fbb95c71854ec4fa90fe88062d67281eef.tar.xz
lvm2-1efda0fbb95c71854ec4fa90fe88062d67281eef.zip
Rename lvm_list_vg_ids to lvm_list_vg_uuids.
Author: Dave Wysochanski <dwysocha@redhat.com>
Diffstat (limited to 'liblvm')
-rw-r--r--liblvm/.exported_symbols2
-rw-r--r--liblvm/lvm.h2
-rw-r--r--liblvm/lvm_vg.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/liblvm/.exported_symbols b/liblvm/.exported_symbols
index 4f98be7c..496e2b9b 100644
--- a/liblvm/.exported_symbols
+++ b/liblvm/.exported_symbols
@@ -28,6 +28,6 @@ lvm_errmsg
lvm_vg_list_pvs
lvm_vg_list_lvs
lvm_list_vg_names
-lvm_list_vg_ids
+lvm_list_vg_uuids
lvm_vg_create_lv_linear
lvm_vg_remove_lv
diff --git a/liblvm/lvm.h b/liblvm/lvm.h
index 52e23f96..7d9069f7 100644
--- a/liblvm/lvm.h
+++ b/liblvm/lvm.h
@@ -336,7 +336,7 @@ struct dm_list *lvm_vg_list_pvs(vg_t *vg);
* FIXME: handle list memory cleanup
*/
struct dm_list *lvm_list_vg_names(lvm_t libh);
-struct dm_list *lvm_list_vg_ids(lvm_t libh);
+struct dm_list *lvm_list_vg_uuids(lvm_t libh);
/**
* Scan all devices on the system for VGs and LVM metadata.
diff --git a/liblvm/lvm_vg.c b/liblvm/lvm_vg.c
index f4de0025..96084c84 100644
--- a/liblvm/lvm_vg.c
+++ b/liblvm/lvm_vg.c
@@ -247,7 +247,7 @@ struct dm_list *lvm_list_vg_names(lvm_t libh)
return get_vgnames((struct cmd_context *)libh, 0);
}
-struct dm_list *lvm_list_vg_ids(lvm_t libh)
+struct dm_list *lvm_list_vg_uuids(lvm_t libh)
{
return get_vgids((struct cmd_context *)libh, 0);
}