mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
do not return void (ITS#6820)
This commit is contained in:
parent
75e3a1931d
commit
aef310e4d8
1 changed files with 2 additions and 2 deletions
|
|
@ -586,7 +586,7 @@ filter_free( Filter *f )
|
|||
void
|
||||
filter2bv_x( Operation *op, Filter *f, struct berval *fstr )
|
||||
{
|
||||
return filter2bv_undef_x( op, f, 0, fstr );
|
||||
filter2bv_undef_x( op, f, 0, fstr );
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -848,7 +848,7 @@ simple:
|
|||
void
|
||||
filter2bv( Filter *f, struct berval *fstr )
|
||||
{
|
||||
return filter2bv_undef( f, 0, fstr );
|
||||
filter2bv_undef( f, 0, fstr );
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue