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
Jaak Ristioja
OpenLDAP
Commits
1566454e
Commit
1566454e
authored
24 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Add sets to NT build, remove LINT
parent
af611de3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
servers/slapd/libslapd.dsp
+8
-0
8 additions, 0 deletions
servers/slapd/libslapd.dsp
servers/slapd/sets.c
+5
-2
5 additions, 2 deletions
servers/slapd/sets.c
servers/slapd/slap.h
+3
-0
3 additions, 0 deletions
servers/slapd/slap.h
with
16 additions
and
2 deletions
servers/slapd/libslapd.dsp
+
8
−
0
View file @
1566454e
...
...
@@ -312,6 +312,14 @@ SOURCE=.\search.c
# End Source File
# Begin Source File
SOURCE=.\sets.c
# End Source File
# Begin Source File
SOURCE=.\sets.h
# End Source File
# Begin Source File
SOURCE=.\slap.h
# End Source File
# Begin Source File
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/sets.c
+
5
−
2
View file @
1566454e
...
...
@@ -4,9 +4,12 @@
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include
"portable.h"
#include
<ac/string.h>
#include
"portable.h"
#include
<stdio.h>
#include
<ac/string.h>
#include
"slap.h"
#include
"sets.h"
static
char
**
set_join
(
char
**
lset
,
int
op
,
char
**
rset
);
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/slap.h
+
3
−
0
View file @
1566454e
...
...
@@ -78,6 +78,9 @@ LDAP_BEGIN_DECL
#define ASCII_DIGIT(c) ( (c) >= '0' && (c) <= '9' )
#define ASCII_ALNUM(c) ( ASCII_ALPHA(c) || ASCII_DIGIT(c) )
#define ASCII_PRINTABLE(c) ( (c) >= ' ' && (c) <= '~' )
#define FILTER_ESCAPE(c) ( (c) == '\\' || (c) == '(' || (c) == ')' || !ASCII_PRINTABLE(c) )
#define DN_SEPARATOR(c) ((c) == ',' || (c) == ';')
#define RDN_SEPARATOR(c) ((c) == ',' || (c) == ';' || (c) == '+')
#define RDN_NEEDSESCAPE(c) ((c) == '\\' || (c) == '"')
...
...
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