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

fix update operations

parent ca9bb440
No related branches found
No related tags found
No related merge requests found
......@@ -955,7 +955,7 @@ backsql_add( Operation *op, SlapReply *rs )
}
rs->sr_err = backsql_get_db_conn( op, &dbh );
if ( prc != LDAP_SUCCESS ) {
if ( rs->sr_err != LDAP_SUCCESS ) {
Debug( LDAP_DEBUG_TRACE, "backsql_add(): "
"could not get connection handle - exiting\n",
0, 0, 0 );
......@@ -1531,8 +1531,10 @@ backsql_delete( Operation *op, SlapReply *rs )
SQLTransact( SQL_NULL_HENV, dbh,
op->o_noop ? SQL_ROLLBACK : SQL_COMMIT );
rs->sr_err = LDAP_SUCCESS;
send_ldap_result( op, rs );
Debug( LDAP_DEBUG_TRACE, "<==backsql_delete()\n", 0, 0, 0 );
return op->o_noop;
}
......
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