Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ingo Voss
OpenLDAP
Commits
58255ab2
Commit
58255ab2
authored
Aug 22, 2011
by
Pierangelo Masarati
Browse files
further cleanup of ldapsearch response
parent
71eda709
Changes
1
Hide whitespace changes
Inline
Side-by-side
clients/tools/ldapsearch.c
View file @
58255ab2
...
...
@@ -1376,7 +1376,7 @@ static int dosearch(
int
sizelimit
)
{
char
*
filter
;
int
rc
;
int
rc
,
rc2
=
LDAP_OTHER
;
int
nresponses
;
int
nentries
;
int
nreferences
;
...
...
@@ -1439,8 +1439,7 @@ static int dosearch(
}
if
(
rc
!=
LDAP_SUCCESS
)
{
fprintf
(
stderr
,
_
(
"%s: ldap_search_ext: %s (%d)
\n
"
),
prog
,
ldap_err2string
(
rc
),
rc
);
tool_perror
(
"ldap_search_ext"
,
rc
,
NULL
,
NULL
,
NULL
,
NULL
);
return
(
rc
);
}
...
...
@@ -1459,9 +1458,8 @@ static int dosearch(
sortattr
?
LDAP_MSG_ALL
:
LDAP_MSG_ONE
,
tvp
,
&
res
))
>
0
)
{
rc
=
tool_check_abandon
(
ld
,
msgid
);
if
(
rc
)
{
return
rc
;
if
(
tool_check_abandon
(
ld
,
msgid
)
)
{
return
-
1
;
}
if
(
sortattr
)
{
...
...
@@ -1509,7 +1507,7 @@ static int dosearch(
/* pagedResults stuff is dealt with
* in tool_print_ctrls(), called by
* print_results(). */
rc
=
print_result
(
ld
,
msg
,
1
);
rc
2
=
print_result
(
ld
,
msg
,
1
);
if
(
ldapsync
==
LDAP_SYNC_REFRESH_AND_PERSIST
)
{
break
;
}
...
...
@@ -1553,18 +1551,8 @@ static int dosearch(
}
done:
if
(
tvp
==
NULL
&&
rc
==
0
)
{
ldap_get_option
(
ld
,
LDAP_OPT_RESULT_CODE
,
(
void
*
)
&
rc
);
}
switch
(
rc
)
{
case
LDAP_SUCCESS
:
case
LDAP_REFERRAL
:
break
;
default:
tool_perror
(
"ldap_result"
,
rc
,
NULL
,
NULL
,
NULL
,
NULL
);
return
(
rc
);
if
(
tvp
==
NULL
&&
rc
!=
LDAP_RES_SEARCH_RESULT
)
{
ldap_get_option
(
ld
,
LDAP_OPT_RESULT_CODE
,
(
void
*
)
&
rc2
);
}
ldap_msgfree
(
res
);
...
...
@@ -1598,7 +1586,11 @@ done:
if
(
nreferences
)
printf
(
_
(
"# numReferences: %d
\n
"
),
nreferences
);
}
return
(
rc
);
if
(
rc
!=
LDAP_RES_SEARCH_RESULT
)
{
tool_perror
(
"ldap_result"
,
rc2
,
NULL
,
NULL
,
NULL
,
NULL
);
}
return
(
rc2
);
}
/* This is the proposed new way of doing things.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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