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
Joe Martin
OpenLDAP
Commits
6350fad6
Commit
6350fad6
authored
Dec 13, 2006
by
Howard Chu
Browse files
ITS#4545 when referral chasing is off, complete the request
parent
69c4495b
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/result.c
View file @
6350fad6
...
...
@@ -655,7 +655,7 @@ nextresp2:
lr
->
lr_msgid
,
0
,
0
);
}
/* We sucessfully chased the reference */
/* We suc
c
essfully chased the reference */
v3ref
=
V3REF_SUCCESS
;
}
}
...
...
@@ -728,6 +728,20 @@ nextresp2:
LDAP_FREE
(
lr
->
lr_res_error
);
lr
->
lr_res_error
=
NULL
;
}
/* Since it's not a SearchReference, it must be a
* result. Since we're not chasing the referral,
* this request is done.
*/
if
(
v3ref
==
V3REF_TOAPP
)
{
lr
->
lr_status
=
LDAP_REQST_COMPLETED
;
Debug
(
LDAP_DEBUG_TRACE
,
"request done: ld %p msgid %d, "
"referral returned to app
\n
"
,
(
void
*
)
ld
,
lr
->
lr_msgid
,
0
);
ldap_return_request
(
ld
,
lr
,
1
);
lr
=
NULL
;
}
}
}
}
...
...
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