fix 'control reaches end of non-void function'

This commit is contained in:
Pierangelo Masarati 2003-11-29 18:00:07 +00:00
parent 99a3164972
commit 3aa27601e1

View file

@ -1836,9 +1836,14 @@ cache_back_sentry(
op->o_callback = cb;
return 0;
} else if (rs->sr_type == REP_RESULT) {
op->o_callback = NULL;
send_ldap_result( op, rs );
return 0;
}
/* FIXME: not handled? */
assert(0);
return -1;
}