not all "not to quote"-chars mentioned in IniFile.pm

2004-04-16 Thread Ingo Steuwer
Hello, troubleshooting some problems with special options for a network card we needed to change the file IniFile.pm (in install/lib/Unattend): my $nq_out_chars = qr{[az-A-Z0-9_.,<>:/\-%\\\*]}; to: my $nq_out_chars = qr{[az-A-Z0-9_.,<>:/\-%\\\*\$\~]}; (line 247 the last release 4.0b). The op

Re: not all "not to quote"-chars mentioned in IniFile.pm

2004-04-16 Thread Patrick J. LoPresti
Ingo Steuwer <[EMAIL PROTECTED]> writes: > Hello, > > troubleshooting some problems with special options for a network card we > needed to change the file IniFile.pm (in install/lib/Unattend): > > my $nq_out_chars = qr{[az-A-Z0-9_.,<>:/\-%\\\*]}; I think you meant qr{[a-zA-Z0-9_.,<>:/\-%\\\*]}.