mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
use / as separator
This commit is contained in:
parent
e2292d34e1
commit
5339c69620
1 changed files with 2 additions and 2 deletions
|
|
@ -114,7 +114,7 @@ N_(" [!]noop\n")
|
||||||
N_(" ppolicy\n")
|
N_(" ppolicy\n")
|
||||||
#endif
|
#endif
|
||||||
#ifdef LDAP_CONTROL_X_CHAINING_BEHAVIOR
|
#ifdef LDAP_CONTROL_X_CHAINING_BEHAVIOR
|
||||||
N_(" [!]chaining[=<resolveBehavior>[,<continuationBehavior>]]\n")
|
N_(" [!]chaining[=<resolveBehavior>[/<continuationBehavior>]]\n")
|
||||||
N_(" one of \"chainingPreferred\", \"chainingRequired\",\n")
|
N_(" one of \"chainingPreferred\", \"chainingRequired\",\n")
|
||||||
N_(" \"referralsPreferred\", \"referralsRequired\"\n")
|
N_(" \"referralsPreferred\", \"referralsRequired\"\n")
|
||||||
#endif /* LDAP_CONTROL_X_CHAINING_BEHAVIOR */
|
#endif /* LDAP_CONTROL_X_CHAINING_BEHAVIOR */
|
||||||
|
|
@ -304,7 +304,7 @@ tool_args( int argc, char **argv )
|
||||||
if ( cvalue != NULL ) {
|
if ( cvalue != NULL ) {
|
||||||
char *continuation;
|
char *continuation;
|
||||||
|
|
||||||
continuation = strchr( cvalue, ',' );
|
continuation = strchr( cvalue, '/' );
|
||||||
if ( continuation ) {
|
if ( continuation ) {
|
||||||
/* FIXME: this makes sense only in searches */
|
/* FIXME: this makes sense only in searches */
|
||||||
*continuation++ = '\0';
|
*continuation++ = '\0';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue