ITS#8105 back-perl: correctly convert perlModuleConfig

perlModuleConfig lines are not converted when using slaptest -f -F.
This commit is contained in:
Jan Synacek 2015-04-15 08:53:39 +02:00 committed by Howard Chu
parent 15347d1180
commit 25bbf116ad

View file

@ -221,6 +221,9 @@ perl_cf(
/* Put all arguments on the perl stack */
for( args = 1; args < c->argc; args++ ) {
XPUSHs(sv_2mortal(newSVpv(c->argv[args], 0)));
ber_str2bv( c->argv[args], 0, 0, &bv );
value_add_one( &pb->pb_module_config, &bv );
}
PUTBACK ;