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
openldap
OpenLDAP
Commits
27d6497c
Commit
27d6497c
authored
Oct 13, 2008
by
Hallvard Furuseth
Browse files
Warning cleanup: Missing braces in initialization.
parent
c2a31741
Changes
5
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-bdb/add.c
View file @
27d6497c
...
...
@@ -34,7 +34,7 @@ bdb_add(Operation *op, SlapReply *rs )
AttributeDescription
*
entry
=
slap_schema
.
si_ad_entry
;
DB_TXN
*
ltid
=
NULL
,
*
lt2
,
*
rtxn
;
ID
eid
=
NOID
;
struct
bdb_op_info
opinfo
=
{
0
};
struct
bdb_op_info
opinfo
=
{
{{
0
}}
};
int
subentry
;
DB_LOCK
lock
;
...
...
servers/slapd/back-bdb/delete.c
View file @
27d6497c
...
...
@@ -35,7 +35,7 @@ bdb_delete( Operation *op, SlapReply *rs )
AttributeDescription
*
children
=
slap_schema
.
si_ad_children
;
AttributeDescription
*
entry
=
slap_schema
.
si_ad_entry
;
DB_TXN
*
ltid
=
NULL
,
*
lt2
;
struct
bdb_op_info
opinfo
=
{
0
};
struct
bdb_op_info
opinfo
=
{
{{
0
}}
};
ID
eid
;
DB_LOCK
lock
,
plock
;
...
...
servers/slapd/back-bdb/modify.c
View file @
27d6497c
...
...
@@ -330,7 +330,7 @@ bdb_modify( Operation *op, SlapReply *rs )
char
textbuf
[
SLAP_TEXT_BUFLEN
];
size_t
textlen
=
sizeof
textbuf
;
DB_TXN
*
ltid
=
NULL
,
*
lt2
;
struct
bdb_op_info
opinfo
=
{
0
};
struct
bdb_op_info
opinfo
=
{
{{
0
}}
};
Entry
dummy
=
{
0
};
int
fakeroot
=
0
;
...
...
servers/slapd/back-bdb/modrdn.c
View file @
27d6497c
...
...
@@ -36,7 +36,7 @@ bdb_modrdn( Operation *op, SlapReply *rs )
char
textbuf
[
SLAP_TEXT_BUFLEN
];
size_t
textlen
=
sizeof
textbuf
;
DB_TXN
*
ltid
=
NULL
,
*
lt2
;
struct
bdb_op_info
opinfo
=
{
0
};
struct
bdb_op_info
opinfo
=
{
{{
0
}}
};
Entry
dummy
=
{
0
};
Entry
*
np
=
NULL
;
/* newSuperior Entry */
...
...
servers/slapd/mr.c
View file @
27d6497c
...
...
@@ -377,7 +377,7 @@ matching_rule_use_init( void )
LDAP_SLIST_FOREACH
(
mr
,
&
mr_list
,
smr_next
)
{
AttributeType
*
at
;
MatchingRuleUse
mru_storage
=
{
0
},
MatchingRuleUse
mru_storage
=
{
{
0
}
},
*
mru
=
&
mru_storage
;
char
**
applies_oids
=
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