Skip to content
Snippets Groups Projects
Commit d3c864d6 authored by Jan Synacek's avatar Jan Synacek Committed by Quanah Gibson-Mount
Browse files

ITS#8105 back-perl: correctly convert perlModuleConfig

perlModuleConfig lines are not converted when using slaptest -f -F.
parent 7acd2096
No related branches found
No related tags found
No related merge requests found
......@@ -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 ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment