semicolon after colon in goto labels

This commit is contained in:
Pierangelo Masarati 2001-06-03 08:53:13 +00:00
parent a712216a6c
commit 5a2014b863
3 changed files with 4 additions and 4 deletions

View file

@ -195,7 +195,7 @@ ldap_back_group(
ldap_msgfree(result);
}
cleanup:
cleanup:;
if ( ld != NULL ) {
ldap_unbind(ld);
}

View file

@ -142,7 +142,7 @@ ldap_back_modify(
ldap_modify_s( lc->ld, mdn, modv );
cleanup:
cleanup:;
#ifdef ENABLE_REWRITE
if ( mdn != dn ) {
#endif /* ENABLE_REWRITE */

View file

@ -183,7 +183,7 @@ ldap_back_search(
if ((msgid = ldap_search(lc->ld, mbase, scope, mapped_filter, mapped_attrs,
attrsonly)) == -1)
{
fail:
fail:;
rc = ldap_back_op_result(lc, op);
goto finish;
}
@ -273,7 +273,7 @@ fail:
match, err, NULL, NULL, count );
#endif /* !ENABLE_REWRITE */
finish:
finish:;
if ( match ) {
#ifdef ENABLE_REWRITE
if ( mmatch != match ) {