Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
4fec1820
Commit
4fec1820
authored
Dec 17, 2010
by
Quanah Gibson-Mount
Browse files
Fix function name in debug statements
parent
2954afff
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-sql/modrdn.c
View file @
4fec1820
...
...
@@ -304,7 +304,7 @@ backsql_modrdn( Operation *op, SlapReply *rs )
rc
=
backsql_BindParamBerVal
(
sth
,
1
,
SQL_PARAM_INPUT
,
&
realnew_dn
);
if
(
rc
!=
SQL_SUCCESS
)
{
Debug
(
LDAP_DEBUG_TRACE
,
" backsql_
add_attr
(): "
" backsql_
modrdn
(): "
"error binding DN parameter for objectClass %s
\n
"
,
oc
->
bom_oc
->
soc_cname
.
bv_val
,
0
,
0
);
backsql_PrintErrors
(
bi
->
sql_db_env
,
dbh
,
...
...
@@ -320,7 +320,7 @@ backsql_modrdn( Operation *op, SlapReply *rs )
rc
=
backsql_BindParamID
(
sth
,
2
,
SQL_PARAM_INPUT
,
&
n_id
.
eid_id
);
if
(
rc
!=
SQL_SUCCESS
)
{
Debug
(
LDAP_DEBUG_TRACE
,
" backsql_
add_attr
(): "
" backsql_
modrdn
(): "
"error binding parent ID parameter for objectClass %s
\n
"
,
oc
->
bom_oc
->
soc_cname
.
bv_val
,
0
,
0
);
backsql_PrintErrors
(
bi
->
sql_db_env
,
dbh
,
...
...
@@ -336,7 +336,7 @@ backsql_modrdn( Operation *op, SlapReply *rs )
rc
=
backsql_BindParamID
(
sth
,
3
,
SQL_PARAM_INPUT
,
&
e_id
.
eid_keyval
);
if
(
rc
!=
SQL_SUCCESS
)
{
Debug
(
LDAP_DEBUG_TRACE
,
" backsql_
add_attr
(): "
" backsql_
modrdn
(): "
"error binding entry ID parameter for objectClass %s
\n
"
,
oc
->
bom_oc
->
soc_cname
.
bv_val
,
0
,
0
);
backsql_PrintErrors
(
bi
->
sql_db_env
,
dbh
,
...
...
@@ -352,7 +352,7 @@ backsql_modrdn( Operation *op, SlapReply *rs )
rc
=
backsql_BindParamID
(
sth
,
4
,
SQL_PARAM_INPUT
,
&
e_id
.
eid_id
);
if
(
rc
!=
SQL_SUCCESS
)
{
Debug
(
LDAP_DEBUG_TRACE
,
" backsql_
add_attr
(): "
" backsql_
modrdn
(): "
"error binding ID parameter for objectClass %s
\n
"
,
oc
->
bom_oc
->
soc_cname
.
bv_val
,
0
,
0
);
backsql_PrintErrors
(
bi
->
sql_db_env
,
dbh
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment