summaryrefslogtreecommitdiffstats
path: root/glfs-operations.c
diff options
context:
space:
mode:
Diffstat (limited to 'glfs-operations.c')
-rw-r--r--glfs-operations.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/glfs-operations.c b/glfs-operations.c
index 5b99045..d567605 100644
--- a/glfs-operations.c
+++ b/glfs-operations.c
@@ -91,18 +91,18 @@ glusterBlockCreateEntry(blockCreateCli *blk, char *gbid)
int
-glusterBlockDeleteEntry(blockCreate *blk)
+glusterBlockDeleteEntry(char *volume, char *gbid)
{
struct glfs *glfs;
int ret = -1;
- glfs = glusterBlockVolumeInit(blk->volume, blk->volfileserver);
+ glfs = glusterBlockVolumeInit(volume, "localhost");
if (!glfs) {
ERROR("%s", "glusterBlockVolumeInit: failed");
goto out;
}
- ret = glfs_unlink(glfs, blk->gbid);
+ ret = glfs_unlink(glfs, gbid);
if (ret) {
ERROR("%s", "glfs_unlink: failed");
goto out;