Skip to content

Commit

Permalink
git-cvsimport.perl: Print "UNKNOWN LINE..." on stderr, not stdout.
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
meyering authored and gitster committed Aug 5, 2008
1 parent f70f988 commit 3be3999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-cvsimport.perl
Expand Up @@ -952,7 +952,7 @@ sub commit {
} 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;
Expand Down

0 comments on commit 3be3999

Please sign in to comment.