From: Pierangelo Masarati Date: Tue, 1 Feb 2011 17:49:27 +0000 (+0000) Subject: do not return void (ITS#6820) X-Git-Tag: MIGRATION_CVS2GIT~145 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=aef310e4d86ccc348c3a28555c090d50b8fd721a;p=openldap do not return void (ITS#6820) --- diff --git a/servers/slapd/filter.c b/servers/slapd/filter.c index 372f414d80..3e65fc4db7 100644 --- a/servers/slapd/filter.c +++ b/servers/slapd/filter.c @@ -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