1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

Make clvmd -V return zero status rather than 1.

This commit is contained in:
Christine Caulfield 2010-02-02 08:54:29 +00:00
parent b34f3ea13f
commit 9dc28ab802
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Version 2.02.60 -
===================================
Make clvmd -V return zero status.
Version 2.02.60 - 23rd January 2010
===================================
Fix lvconvert issue with cluster mirrors due to un'_safe' list processing

View File

@ -342,7 +342,7 @@ int main(int argc, char *argv[])
printf("Protocol version: %d.%d.%d\n",
CLVMD_MAJOR_VERSION, CLVMD_MINOR_VERSION,
CLVMD_PATCH_VERSION);
exit(1);
exit(0);
break;
}