]> sourceware.org Git - lvm2.git/commitdiff
pvcreate: fix test for wiping status
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 7 May 2015 10:10:20 +0000 (12:10 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Fri, 8 May 2015 11:36:39 +0000 (13:36 +0200)
Commit ed420fb6917162ed17af69a9a0ec9ae26e61e209 changed
paramet wiped to be a pointer, but missed to switch
to test pointer dereferenced value and instead always
checked 'pointer'.

WHATS_NEW
lib/metadata/metadata.c

index 87ce45cffdf9060790e86023285da6488df46f59..3b22ec5dc9c764e88c624662724eda9e33e6ecaf 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.120 -
 ===============================
+  Fix check if pvcreate wiped device (2.02.117).
   Fix storing of vgid when caching metadata (2.02.118).
   Fix recursive lvm-config man page. (2.02.119)
   Refactor polldaemon interfaces to poll every operation by VG/LV couple
index a1a31eb270fc840ada1d09d1b0f84a1862939985..2a5be7d48bf4b42ffed20d82f658067de4cb5dd4 100644 (file)
@@ -1504,7 +1504,7 @@ static int _pvcreate_check(struct cmd_context *cmd, const char *name,
                goto out;
        }
 
-       if (wiped)
+       if (*wiped)
                filter_refresh_needed = scan_needed = 1;
 
        if (sigint_caught())
This page took 0.043268 seconds and 5 git commands to generate.