diff options
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/script/tests/selftest.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/script/tests/selftest.pl b/source4/script/tests/selftest.pl index a264d7466c..7a8faa8870 100755 --- a/source4/script/tests/selftest.pl +++ b/source4/script/tests/selftest.pl @@ -659,7 +659,9 @@ NETBIOSNAME=\$NETBIOSNAME\" && bash'"); setup_env($envname); - my $pcap_file = "$pcap_dir/$name.cap"; + my $shname = $name; + $shname =~ s%[^abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\-]%_%g; + my $pcap_file = "$pcap_dir/$shname.cap"; SocketWrapper::setup_pcap($pcap_file) if ($opt_socket_wrapper_pcap); my $result; |