Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
faa1385f
Commit
faa1385f
authored
20 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
cleanup error messages and logs
parent
3ea43689
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/back-sql/schema-map.c
+5
-3
5 additions, 3 deletions
servers/slapd/back-sql/schema-map.c
with
5 additions
and
3 deletions
servers/slapd/back-sql/schema-map.c
+
5
−
3
View file @
faa1385f
...
...
@@ -355,14 +355,16 @@ backsql_load_schema_map( backsql_info *si, SQLHDBC dbh )
rc
=
SQLExecute
(
at_sth
);
if
(
rc
!=
SQL_SUCCESS
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"backsql_load_schema_map(): "
"error executing at_query:
\n
"
,
0
,
0
,
0
);
"error executing at_query
\n
"
"
\"
%s
\"\n
"
" with param oc_id=
\"
%lu
\"
:
\n
"
,
si
->
at_query
,
oc_id
,
0
);
backsql_PrintErrors
(
SQL_NULL_HENV
,
dbh
,
at_sth
,
rc
);
return
LDAP_OTHER
;
}
backsql_BindRowAsStrings
(
at_sth
,
&
at_row
);
rc
=
SQLFetch
(
at_sth
);
for
(
;
BACKSQL_SUCCESS
(
rc
);
rc
=
SQLFetch
(
at_sth
)
)
{
for
(
;
rc
=
SQLFetch
(
at_sth
),
BACKSQL_SUCCESS
(
rc
);
)
{
const
char
*
text
=
NULL
;
struct
berval
bv
;
struct
berbuf
bb
=
BB_NULL
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment