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
1ebe532f
Commit
1ebe532f
authored
Apr 16, 2010
by
Quanah Gibson-Mount
Browse files
Fix prev commit
parent
f416cb91
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/config.c
View file @
1ebe532f
...
...
@@ -1441,20 +1441,6 @@ slap_cf_aux_table_parse( const char *word, void *dst, slap_cf_aux_table *tab0, L
rc
=
lutil_atoulx
(
ulptr
,
val
,
0
);
break
;
case
'x'
:
if
(
tab
->
aux
!=
NULL
)
{
struct
berval
value
;
slap_cf_aux_table_parse_x
*
func
=
(
slap_cf_aux_table_parse_x
*
)
tab
->
aux
;
ber_str2bv
(
val
,
0
,
1
,
&
value
);
rc
=
func
(
&
value
,
(
void
*
)((
char
*
)
dst
+
tab
->
off
),
tab
,
tabmsg
,
0
);
}
else
{
rc
=
1
;
}
break
;
case
'x'
:
if
(
tab
->
aux
!=
NULL
)
{
struct
berval
value
;
...
...
servers/slapd/slap.h
View file @
1ebe532f
...
...
@@ -1642,14 +1642,6 @@ typedef struct slap_cf_aux_table {
void
*
aux
;
}
slap_cf_aux_table
;
typedef
int
slap_cf_aux_table_parse_x
LDAP_P
((
struct
berval
*
val
,
void
*
bc
,
slap_cf_aux_table
*
tab0
,
const
char
*
tabmsg
,
int
unparse
));
typedef
int
slap_cf_aux_table_parse_x
LDAP_P
((
struct
berval
*
val
,
...
...
Write
Preview
Markdown
is supported
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