diff options
| author | Pranith Kumar K <pkarampu@redhat.com> | 2013-05-31 14:30:58 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2013-06-06 03:59:05 -0700 | 
| commit | 5eae1db04bb9125032eb31c456d29939ad0f3a03 (patch) | |
| tree | c003b2ebc6cac4b1ad000fc0705801cab2721a39 /xlators/cluster/dht/src | |
| parent | d68fbc3f817831a676d60de7be5b095967aadc7a (diff) | |
cluster/dht: Fix unused-but-set-variable warnings
Change-Id: Ie2b2dc54aa0d500c35752c72d3b562bcc05b1fc2
BUG: 969336
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/5123
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/cluster/dht/src')
| -rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index 180b93d967e..ec54e438e35 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -2053,10 +2053,8 @@ dht_getxattr_get_real_filename_cbk (call_frame_t *frame, void *cookie,  {          int             this_call_cnt = 0;          dht_local_t     *local = NULL; -        dht_conf_t      *conf = NULL; -        conf = this->private;          local = frame->local;  	if (op_ret != -1) { @@ -2083,7 +2081,6 @@ int  dht_getxattr_get_real_filename (call_frame_t *frame, xlator_t *this,  				loc_t *loc, const char *key, dict_t *xdata)  { -	dht_conf_t      *conf = NULL;  	dht_local_t     *local = NULL;  	int              i = 0;  	dht_layout_t    *layout = NULL; @@ -2091,7 +2088,6 @@ dht_getxattr_get_real_filename (call_frame_t *frame, xlator_t *this,  	xlator_t        *subvol = NULL; -        conf   = this->private;  	local = frame->local;  	layout = local->layout;  | 
