syncfiles: terminate directory names at equal signs

In the case where the directory name should be removed (null pathname
separator) don't search backwards past an equal sign, just in case
there isn't a space after the assignment.
This commit is contained in:
H. Peter Anvin 2008-06-15 23:43:44 -07:00
parent 64ca4b6998
commit c5d8030768

View File

@ -18,7 +18,7 @@ sub do_transform($$) {
if ($ps eq '') {
# Remove the path separator and the preceeding directory
$l =~ s/\S*\x02//g;
$l =~ s/[^\s\=]*\x02//g;
} else {
# Convert the path separator
$l =~ s/\x02/$ps/g;