Skip to content
Snippets Groups Projects
Commit 564d1a6a authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix previous commit (for compilers that require at least one statement after a label)

parent 4a618959
No related branches found
No related tags found
No related merge requests found
......@@ -1040,7 +1040,7 @@ operations_error:
case LDAP_REQ_DELETE:
INCR_OP_COMPLETED(SLAP_OP_DELETE);
break;
case LDAP_REQ_MODRDN:
case LDAP_REQ_MODDN:
INCR_OP_COMPLETED(SLAP_OP_MODRDN);
break;
case LDAP_REQ_MODIFY:
......@@ -1062,10 +1062,12 @@ operations_error:
/* this is reachable */
#if 0
/* not reachable */
assert( 0 );
assert( 0 )
#endif
;
}
#endif /* SLAPD_MONITOR */
ldap_pvt_thread_mutex_unlock( &slap_counters.sc_ops_mutex );
if ( op->o_cancel == SLAP_CANCEL_REQ ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment