1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

Fix missing lvm_shell symbol in lvm2cmd library. (2.02.23)

This commit is contained in:
Milan Broz 2007-06-19 10:51:51 +00:00
parent d6b1de30fe
commit 86df68f370
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.27 -
================================
Fix missing lvm_shell symbol in lvm2cmd library. (2.02.23)
Add vg_status function and clean up vg->status in tools directory.
Add --ignoremonitoring to disable all dmeventd interaction.
Remove get_ prefix from get_pv_* functions.

View File

@ -19,3 +19,8 @@ void *lvm2_init(void)
{
return cmdlib_lvm2_init(0);
}
int lvm_shell(struct cmd_context *cmd, struct cmdline_context *cmdline)
{
return 0;
}