diff options
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-snapshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-snapshot.c b/xlators/mgmt/glusterd/src/glusterd-snapshot.c index 761115d22ed..7359040f18c 100644 --- a/xlators/mgmt/glusterd/src/glusterd-snapshot.c +++ b/xlators/mgmt/glusterd/src/glusterd-snapshot.c @@ -2597,7 +2597,7 @@ glusterd_lvm_snapshot_remove (dict_t *rsp_dict, glusterd_volinfo_t *snap_vol) } /* Check if the brick has a LV associated with it */ - if (!brickinfo->device_path) { + if (strlen(brickinfo->device_path) == 0) { gf_log (this->name, GF_LOG_DEBUG, "Brick (%s:%s) does not have a LV " "associated with it. Removing the brick path", |