Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Joe Martin
OpenLDAP
Commits
6ba22723
Commit
6ba22723
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Adhere to "servers will not return operational attributes" in
all cases (including root dse).
parent
cabe6ebe
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configure.in
+4
-3
4 additions, 3 deletions
configure.in
servers/slapd/root_dse.c
+2
-2
2 additions, 2 deletions
servers/slapd/root_dse.c
servers/slapd/schema.c
+5
-0
5 additions, 0 deletions
servers/slapd/schema.c
with
11 additions
and
5 deletions
configure.in
+
4
−
3
View file @
6ba22723
...
...
@@ -497,9 +497,6 @@ AC_AIX
AC_ISC_POSIX
AC_MINIX
dnl BeOS requires -lbe -lroot -lnet
AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
dnl Checks for system services
AC_CYGWIN
AC_MINGW32
...
...
@@ -508,6 +505,9 @@ AC_OBJEXT
AC_DEFINE_UNQUOTED( EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
dnl BeOS requires -lbe -lroot -lnet
AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
dnl OpenLDAP requires STDC features
AM_PROG_CC_STDC
if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
...
...
@@ -523,6 +523,7 @@ if test "${ol_cv_mkdep}" = no ; then
AC_MSG_WARN([do not know how to generate dependencies])
fi
dnl ----------------------------------------------------------------
dnl Checks for libraries
dnl Find socket()
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/root_dse.c
+
2
−
2
View file @
6ba22723
...
...
@@ -91,7 +91,7 @@ root_dse_info( Connection *conn, Operation *op, char **attrs, int attrsonly )
for
(
i
=
0
;
supportedSASLMechanisms
[
i
]
!=
NULL
;
i
++
)
{
val
.
bv_val
=
supportedSASLMechanisms
[
i
];
val
.
bv_len
=
strlen
(
val
.
bv_val
);
attr_merge
(
e
,
"supportedSASLMechanism"
,
vals
);
attr_merge
(
e
,
"supportedSASLMechanism
s
"
,
vals
);
}
if
(
default_referral
!=
NULL
)
{
...
...
@@ -99,7 +99,7 @@ root_dse_info( Connection *conn, Operation *op, char **attrs, int attrsonly )
}
send_search_entry
(
&
backends
[
0
],
conn
,
op
,
e
,
attrs
,
attrsonly
,
1
,
NULL
);
e
,
attrs
,
attrsonly
,
0
,
NULL
);
send_search_result
(
conn
,
op
,
LDAP_SUCCESS
,
NULL
,
NULL
,
NULL
,
NULL
,
1
);
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/schema.c
+
5
−
0
View file @
6ba22723
...
...
@@ -145,6 +145,11 @@ static char *oc_operational_attrs[] = {
"dITContentRules"
,
"nameForms"
,
"ldapSyntaxes"
,
"namingContexts"
,
"supportedExtension"
,
"supportedControl"
,
"supportedSASLMechanisms"
,
"supportedLDAPversion"
,
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