ITS#8731 Manual work not picked up by coccinelle

This commit is contained in:
Ondřej Kuzník 2017-09-11 13:29:52 +00:00 committed by Ondřej Kuzník
parent 97a310b312
commit abbabbb3d7
10 changed files with 18 additions and 19 deletions

View File

@ -193,7 +193,7 @@ backsql_modify_delete_all_values(
" backsql_modify_delete_all_values() "
"arg(%d)=" BACKSQL_IDFMT "\n",
pno + 1 + po,
BACKSQL_IDARG(e_id->eid_keyval), 0 );
BACKSQL_IDARG(e_id->eid_keyval) );
/*
* check for syntax needed here
@ -475,7 +475,7 @@ add_only:;
" backsql_modify_internal(): "
"arg(%d)=" BACKSQL_IDFMT "\n",
pno + 1 + po,
BACKSQL_IDARG(e_id->eid_keyval), 0 );
BACKSQL_IDARG(e_id->eid_keyval) );
/*
* check for syntax needed here
@ -633,7 +633,7 @@ add_only:;
" backsql_modify_internal(): "
"arg(%d)=" BACKSQL_IDFMT "\n",
pno + 1 + po,
BACKSQL_IDARG(e_id->eid_keyval), 0 );
BACKSQL_IDARG(e_id->eid_keyval) );
/*
* check for syntax needed here
@ -1306,7 +1306,7 @@ backsql_add( Operation *op, SlapReply *rs )
Debug( LDAP_DEBUG_TRACE, " backsql_add(\"%s\"): "
"create_proc returned keyval=" BACKSQL_IDNUMFMT "\n",
op->ora_e->e_name.bv_val, new_keyval, 0 );
op->ora_e->e_name.bv_val, new_keyval );
rc = backsql_Prepare( dbh, &sth, bi->sql_insentry_stmt, 0 );
if ( rc != SQL_SUCCESS ) {

View File

@ -690,7 +690,7 @@ backsql_get_attr_vals( void *v_at, void *v_bsi )
#ifdef BACKSQL_TRACE
Debug( LDAP_DEBUG_TRACE, "backsql_get_attr_vals(): "
"query=\"%s\" keyval=" BACKSQL_IDFMT "\n", at->bam_query,
BACKSQL_IDARG(bsi->bsi_c_eid->eid_keyval), 0 );
BACKSQL_IDARG(bsi->bsi_c_eid->eid_keyval) );
#endif /* BACKSQL_TRACE */
rc = SQLExecute( sth );

View File

@ -103,7 +103,7 @@ backsql_modify( Operation *op, SlapReply *rs )
Debug( LDAP_DEBUG_TRACE, " backsql_modify(): "
"modifying entry \"%s\" (id=" BACKSQL_IDFMT ")\n",
bsi.bsi_base_id.eid_dn.bv_val,
BACKSQL_IDARG(bsi.bsi_base_id.eid_id), 0 );
BACKSQL_IDARG(bsi.bsi_base_id.eid_id) );
if ( get_assert( op ) &&
( test_filter( op, &m, get_assertion( op ) )

View File

@ -107,7 +107,7 @@ backsql_modrdn( Operation *op, SlapReply *rs )
Debug( LDAP_DEBUG_TRACE,
" backsql_modrdn(): entry id=" BACKSQL_IDFMT "\n",
BACKSQL_IDARG(e_id.eid_id), 0, 0 );
BACKSQL_IDARG(e_id.eid_id) );
if ( get_assert( op ) &&
( test_filter( op, &r, get_assertion( op ) )
@ -167,7 +167,7 @@ backsql_modrdn( Operation *op, SlapReply *rs )
Debug( LDAP_DEBUG_TRACE,
" backsql_modrdn(): old parent entry id is " BACKSQL_IDFMT "\n",
BACKSQL_IDARG(bsi.bsi_base_id.eid_id), 0, 0 );
BACKSQL_IDARG(bsi.bsi_base_id.eid_id) );
if ( rs->sr_err != LDAP_SUCCESS ) {
Debug( LDAP_DEBUG_TRACE, "backsql_modrdn(): "
@ -222,7 +222,7 @@ backsql_modrdn( Operation *op, SlapReply *rs )
Debug( LDAP_DEBUG_TRACE,
" backsql_modrdn(): new parent entry id=" BACKSQL_IDFMT "\n",
BACKSQL_IDARG(n_id.eid_id), 0, 0 );
BACKSQL_IDARG(n_id.eid_id) );
if ( !access_allowed( op, &n, slap_schema.si_ad_children,
NULL, ACL_WADD, NULL ) ) {

View File

@ -1746,7 +1746,7 @@ backsql_oc_get_candidates( void *v_oc, void *v_bsi )
}
Debug( LDAP_DEBUG_TRACE, "id: '" BACKSQL_IDNUMFMT "'\n",
bsi->bsi_oc->bom_id, 0, 0 );
bsi->bsi_oc->bom_id );
rc = backsql_BindParamNumID( sth, 1, SQL_PARAM_INPUT,
&bsi->bsi_oc->bom_id );
@ -1883,7 +1883,7 @@ backsql_oc_get_candidates( void *v_oc, void *v_bsi )
assert( !BER_BVISNULL( &bsi->bsi_base_id.eid_ndn ) );
Debug( LDAP_DEBUG_TRACE, "(one)id=" BACKSQL_IDFMT "\n",
BACKSQL_IDARG(bsi->bsi_base_id.eid_id), 0, 0 );
BACKSQL_IDARG(bsi->bsi_base_id.eid_id) );
rc = backsql_BindParamID( sth, 2, SQL_PARAM_INPUT,
&bsi->bsi_base_id.eid_id );
if ( rc != SQL_SUCCESS ) {
@ -2604,8 +2604,7 @@ backsql_entry_get(
/* find attribute values */
if ( is_entry_alias( bsi.bsi_e ) ) {
Debug( LDAP_DEBUG_ACL,
"<= backsql_entry_get: entry is an alias\n",
0, 0, 0 );
"<= backsql_entry_get: entry is an alias\n" );
rc = LDAP_ALIAS_PROBLEM;
goto return_results;
}

View File

@ -363,7 +363,7 @@ wt_dn2id(
struct wt_info *wi = (struct wy_info *) op->o_bd->be_private;
WT_CURSOR *cursor = NULL;
int rc;
Debug( LDAP_DEBUG_TRACE, "=> wt_dn2id(\"%s\")\n", dn->bv_val, 0, 0 );
Debug( LDAP_DEBUG_TRACE, "=> wt_dn2id(\"%s\")\n", dn->bv_val );
rc = session->open_cursor(session, WT_INDEX_DN"(id)",
NULL, NULL, &cursor);

View File

@ -600,7 +600,7 @@ slap_global_control( Operation *op, const char *oid, int *cid )
#if 0
Debug( LDAP_DEBUG_TRACE,
"slap_global_control: unavailable control: %s\n",
oid, 0, 0 );
oid );
#endif
return LDAP_COMPARE_FALSE;

View File

@ -485,7 +485,7 @@ cr_schema_info( Entry *e )
#endif
#if 0
Debug( LDAP_DEBUG_TRACE, "Merging cr [%ld] %s\n",
(long) val.bv_len, val.bv_val, 0 );
(long) val.bv_len, val.bv_val );
#endif
nval.bv_val = cr->scr_oid;

View File

@ -505,7 +505,7 @@ int mr_schema_info( Entry *e )
}
#if 0
Debug( LDAP_DEBUG_TRACE, "Merging mr [%lu] %s\n",
mr->smr_str.bv_len, mr->smr_str.bv_val, 0 );
mr->smr_str.bv_len, mr->smr_str.bv_val );
#endif
nval.bv_val = mr->smr_oid;
@ -536,7 +536,7 @@ int mru_schema_info( Entry *e )
#if 0
Debug( LDAP_DEBUG_TRACE, "Merging mru [%lu] %s\n",
mru->smru_str.bv_len, mru->smru_str.bv_val, 0 );
mru->smru_str.bv_len, mru->smru_str.bv_val );
#endif
nval.bv_val = mru->smru_oid;

View File

@ -351,7 +351,7 @@ syn_schema_info( Entry *e )
}
#if 0
Debug( LDAP_DEBUG_TRACE, "Merging syn [%ld] %s\n",
(long) val.bv_len, val.bv_val, 0 );
(long) val.bv_len, val.bv_val );
#endif
nval.bv_val = syn->ssyn_oid;