bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Minor chagnes to contrib/check_cvs.in


From: Larry Jones
Subject: Re: Minor chagnes to contrib/check_cvs.in
Date: Tue, 25 Feb 2003 10:52:28 -0500 (EST)

Donald Sharp writes:
>
> *** 307,313 ****
>       my $ignore = 1;
>       my $save_ = $_;
>   
> !     open( FILE, "rlog -N '$file' 2>&1 |" ) or die( "unable to run rlog, 
> help" );
>   
>       while( <FILE> )
>       {
> --- 307,313 ----
>       my $ignore = 1;
>       my $save_ = $_;
>   
> !     open( FILE, "rlog -N \"$file\" 2>&1 |" ) or die( "unable to run rlog, 
> help" );
>   
>       while( <FILE> )
>       {

That's necessary, but not sufficient.  Now it fails for file names
containing ", $, `, or \.  This time, however, I embraced the learning
oportunity and added a few:

        $file =~ s/(["\$`\\])/\\$1/g;

I've checked in the result.  Thanks again!

-Larry Jones

Hmm... That might not be politic. -- Calvin




reply via email to

[Prev in Thread] Current Thread [Next in Thread]