From: Jim Meyering Date: Tue, 5 Aug 2008 14:54:42 +0000 (+0200) Subject: git-cvsimport.perl: Print "UNKNOWN LINE..." on stderr, not stdout. X-Git-Tag: v1.5.6.5~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3be3999849bf993162fc957f47fc99325c324e9c;p=git.git git-cvsimport.perl: Print "UNKNOWN LINE..." on stderr, not stdout. Signed-off-by: Jim Meyering Signed-off-by: Junio C Hamano --- diff --git a/git-cvsimport.perl b/git-cvsimport.perl index cacbfc025..7e95fb374 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -952,7 +952,7 @@ while () { } elsif (/^-+$/) { # end of unknown-line processing $state = 1; } elsif ($state != 11) { # ignore stuff when skipping - print "* UNKNOWN LINE * $_\n"; + print STDERR "* UNKNOWN LINE * $_\n"; } } commit() if $branch and $state != 11;