diff options
| author | Lukas Slebodnik <lslebodn@redhat.com> | 2016-09-17 21:05:36 +0200 |
|---|---|---|
| committer | Lukas Slebodnik <lslebodn@redhat.com> | 2016-09-21 15:10:11 +0200 |
| commit | b9941359b3181c42f415530d5ccad0f4664d85fa (patch) | |
| tree | e19cf23f6af865b2313c9ebbe1a6868f7f39a8a6 /src/providers/ldap | |
| parent | c0ee12832555b42c17e48cdf731731454a97972e (diff) | |
| download | sssd-b9941359b3181c42f415530d5ccad0f4664d85fa.tar.gz sssd-b9941359b3181c42f415530d5ccad0f4664d85fa.tar.xz sssd-b9941359b3181c42f415530d5ccad0f4664d85fa.zip | |
Remove double semicolon at the end of line
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
Diffstat (limited to 'src/providers/ldap')
| -rw-r--r-- | src/providers/ldap/sdap_async.c | 6 | ||||
| -rw-r--r-- | src/providers/ldap/sdap_async_initgroups.c | 2 | ||||
| -rw-r--r-- | src/providers/ldap/sdap_async_netgroups.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/providers/ldap/sdap_async.c b/src/providers/ldap/sdap_async.c index f37411293..246e12a1f 100644 --- a/src/providers/ldap/sdap_async.c +++ b/src/providers/ldap/sdap_async.c @@ -2097,7 +2097,7 @@ static void sdap_x_deref_search_done(struct tevent_req *subreq) static int sdap_x_deref_search_ctrls_destructor(void *ptr) { - LDAPControl **ctrls = talloc_get_type(ptr, LDAPControl *);; + LDAPControl **ctrls = talloc_get_type(ptr, LDAPControl *); if (ctrls && ctrls[0]) { ldap_control_free(ctrls[0]); @@ -2289,7 +2289,7 @@ static void sdap_sd_search_done(struct tevent_req *subreq) static int sdap_sd_search_ctrls_destructor(void *ptr) { - LDAPControl **ctrls = talloc_get_type(ptr, LDAPControl *);; + LDAPControl **ctrls = talloc_get_type(ptr, LDAPControl *); if (ctrls && ctrls[0]) { ldap_control_free(ctrls[0]); } @@ -2548,7 +2548,7 @@ static void sdap_asq_search_done(struct tevent_req *subreq) static int sdap_asq_search_ctrls_destructor(void *ptr) { - LDAPControl **ctrls = talloc_get_type(ptr, LDAPControl *);; + LDAPControl **ctrls = talloc_get_type(ptr, LDAPControl *); if (ctrls && ctrls[0]) { ldap_control_free(ctrls[0]); diff --git a/src/providers/ldap/sdap_async_initgroups.c b/src/providers/ldap/sdap_async_initgroups.c index f9593f0df..df39de3cc 100644 --- a/src/providers/ldap/sdap_async_initgroups.c +++ b/src/providers/ldap/sdap_async_initgroups.c @@ -816,7 +816,7 @@ static struct tevent_req *sdap_initgr_nested_send(TALLOC_CTX *memctx, } state->groups = talloc_zero_array(state, struct sysdb_attrs *, - state->memberof->num_values + 1);; + state->memberof->num_values + 1); if (!state->groups) { ret = ENOMEM; goto immediate; diff --git a/src/providers/ldap/sdap_async_netgroups.c b/src/providers/ldap/sdap_async_netgroups.c index e1d69ad76..f4a1d165f 100644 --- a/src/providers/ldap/sdap_async_netgroups.c +++ b/src/providers/ldap/sdap_async_netgroups.c @@ -313,7 +313,7 @@ struct tevent_req *netgr_translate_members_send(TALLOC_CTX *memctx, dn_filter = talloc_strdup(state, "(|"); if (dn_filter == NULL) { DEBUG(SSSDBG_CRIT_FAILURE, "talloc_strdup failed.\n"); - ret = ENOMEM;; + ret = ENOMEM; goto fail; } |
