summaryrefslogtreecommitdiffstats
path: root/tools/lvm.c
diff options
context:
space:
mode:
authorDave Wysochanski <dwysocha@redhat.com>2008-12-18 05:27:17 +0000
committerDave Wysochanski <dwysocha@redhat.com>2008-12-18 05:27:17 +0000
commit02961979994ceb2ce2e38f79ea4b5719faf3fb42 (patch)
tree7177cffb185d8317bf8a5e1120562024c71b3a88 /tools/lvm.c
parentc5c13fe77627ef0329d1022c6b3daab99decd258 (diff)
downloadlvm2-02961979994ceb2ce2e38f79ea4b5719faf3fb42.tar.gz
lvm2-02961979994ceb2ce2e38f79ea4b5719faf3fb42.tar.xz
lvm2-02961979994ceb2ce2e38f79ea4b5719faf3fb42.zip
Create global is_static() to eliminate from the library init function.
Very simple / crude method of removing 'is_static' from initialization. Why should we require an application tell us whether it is linked statically or dynamically to libLVM? If the application is linked statically, but libraries exist and dlopen() calls succeed, why do we care if it's statically linked?
Diffstat (limited to 'tools/lvm.c')
-rw-r--r--tools/lvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lvm.c b/tools/lvm.c
index 3576515d..e1f7900c 100644
--- a/tools/lvm.c
+++ b/tools/lvm.c
@@ -18,7 +18,7 @@
int main(int argc, char **argv)
{
- return lvm2_main(argc, argv, 0);
+ return lvm2_main(argc, argv);
}
#ifdef READLINE_SUPPORT