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
0d1e7624
Commit
0d1e7624
authored
24 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Don't depend error handling on exact resultCode.
parent
92e24534
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
clients/ud/find.c
+1
-6
1 addition, 6 deletions
clients/ud/find.c
clients/ud/main.c
+1
-6
1 addition, 6 deletions
clients/ud/main.c
clients/ud/mod.c
+14
-15
14 additions, 15 deletions
clients/ud/mod.c
contrib/whois++/whois++.c
+0
-7
0 additions, 7 deletions
contrib/whois++/whois++.c
with
16 additions
and
34 deletions
clients/ud/find.c
+
1
−
6
View file @
0d1e7624
...
...
@@ -231,12 +231,7 @@ find( char *who, int quiet )
rc
=
ldap_search_s
(
ld
,
dn
,
LDAP_SCOPE_BASE
,
NULL
,
read_attrs
,
FALSE
,
&
res
);
ldap_memfree
(
dn
);
if
(
rc
!=
LDAP_SUCCESS
)
{
int
ld_errno
=
0
;
ldap_get_option
(
ld
,
LDAP_OPT_ERROR_NUMBER
,
&
ld_errno
);
if
(
ld_errno
==
LDAP_UNAVAILABLE
)
printf
(
" Could not contact the LDAP server to find
\"
%s
\"
.
\n
"
,
who
);
else
ldap_perror
(
ld
,
"ldap_search_s"
);
ldap_perror
(
ld
,
"ldap_search_s"
);
return
(
NULL
);
}
ldap_set_option
(
ld
,
LDAP_OPT_DEREF
,
&
savederef
);
...
...
This diff is collapsed.
Click to expand it.
clients/ud/main.c
+
1
−
6
View file @
0d1e7624
...
...
@@ -660,12 +660,7 @@ initialize_client( void )
}
if
(
ldap_bind_s
(
ld
,
(
char
*
)
default_bind_object
,
NULL
,
LDAP_AUTH_SIMPLE
)
!=
LDAP_SUCCESS
)
{
int
ld_errno
=
0
;
ldap_get_option
(
ld
,
LDAP_OPT_ERROR_NUMBER
,
&
ld_errno
);
fprintf
(
stderr
,
" The LDAP Directory is temporarily unavailable. Please try again later.
\n
"
);
if
(
ld_errno
!=
LDAP_UNAVAILABLE
)
ldap_perror
(
ld
,
" ldap_bind_s"
);
ldap_perror
(
ld
,
" ldap_bind_s"
);
exit
(
EXIT_FAILURE
);
/* NOTREACHED */
}
...
...
This diff is collapsed.
Click to expand it.
clients/ud/mod.c
+
14
−
15
View file @
0d1e7624
...
...
@@ -788,23 +788,22 @@ check_URL( char *url )
void
mod_perror
(
LDAP
*
ld
)
{
int
ld_errno
=
0
;
int
ld_errno
=
LDAP_SUCCESS
;
char
*
ld_errtext
=
NULL
;
if
(
ld
!=
NULL
)
{
ldap_get_option
(
ld
,
LDAP_OPT_ERROR_NUMBER
,
&
ld_errno
);
}
ldap_get_option
(
ld
,
LDAP_OPT_ERROR_NUMBER
,
&
ld_errno
);
if
((
ld
==
NULL
)
||
(
ld_errno
!=
LDAP_UNAVAILABLE
&&
ld_errno
!=
LDAP_UNWILLING_TO_PERFORM
))
{
ldap_perror
(
ld
,
"modify"
);
return
;
}
if
(
ld_errno
!=
LDAP_SUCCESS
)
{
ldap_get_option
(
ld
,
LDAP_OPT_ERROR_STRING
,
&
ld_errtext
);
}
fprintf
(
stderr
,
"
\n
modify: failed because part of the online directory is not able
\n
"
);
fprintf
(
stderr
,
" to be modified right now"
);
if
(
ld_errno
==
LDAP_UNAVAILABLE
)
{
fprintf
(
stderr
,
" or is temporarily unavailable"
);
fprintf
(
stderr
,
" modify failed: %s (%d)
\n
"
,
ldap_err2string
(
ld_errno
),
ld_errno
);
if
(
ld_errtext
!=
NULL
)
{
fprintf
(
stderr
,
" additional information: %s
\n
"
,
ld_errtext
);
}
fprintf
(
stderr
,
".
\n
Please try again later.
\n
"
);
fprintf
(
stderr
,
" Please try again later.
\n
"
);
}
This diff is collapsed.
Click to expand it.
contrib/whois++/whois++.c
+
0
−
7
View file @
0d1e7624
...
...
@@ -195,13 +195,6 @@ char **argv;
case
LDAP_SUCCESS
:
break
;
case
LDAP_UNAVAILABLE
:
printFormatted
(
lineLength
,
TRUE
,
stdout
,
"Sorry, the X.500 service is temporarily unavailable. \
Please try again later."
);
syslog
(
LOG_NOTICE
,
"X.500 service temporarily unavailable"
);
exit
(
1
);
default:
printFormatted
(
lineLength
,
TRUE
,
stdout
,
"Bind to Directory failed, %s"
,
...
...
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