From: Alan T. DeKok Date: Tue, 23 Jun 2015 18:15:47 +0000 (-0400) Subject: Remove unused assignment X-Git-Tag: release_3_0_9~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff4ac7e09942bb78419a1ee36e447cd9fe3c1382;p=thirdparty%2Ffreeradius-server.git Remove unused assignment --- diff --git a/src/modules/rlm_couchbase/mod.c b/src/modules/rlm_couchbase/mod.c index a3eb5bddd87..40982e69dfb 100644 --- a/src/modules/rlm_couchbase/mod.c +++ b/src/modules/rlm_couchbase/mod.c @@ -69,7 +69,7 @@ void *mod_conn_create(TALLOC_CTX *ctx, void *instance) rlm_couchbase_handle_t *chandle = NULL; /* connection handle pointer */ cookie_t *cookie = NULL; /* couchbase cookie */ lcb_t cb_inst; /* couchbase connection instance */ - lcb_error_t cb_error = LCB_SUCCESS; /* couchbase error status */ + lcb_error_t cb_error; /* couchbase error status */ /* create instance */ cb_error = couchbase_init_connection(&cb_inst, inst->server, inst->bucket, inst->password);