[text/plain 64b]
I'm attaching the patch with fixed "undefined value" warnings.
[text/x-diff 589b]
Index: lib/SVN/Pusher.pm
===================================================================
--- lib/SVN/Pusher.pm (revision 2392)
+++ lib/SVN/Pusher.pm (working copy)
@@ -233,8 +240,8 @@
my $editor = SVN::Pusher::MirrorEditor->new
($tra->get_commit_editor(
$self->{verbatim}
- ? "$msg"
- : ( ($msg?"$msg\n":'') . ":$rev:$self->{source_uuid}:$date:" )
+ ? (defined $msg ? "$msg" : '')
+ : ( (defined $msg ? "$msg\n" : '') . ":$rev:$self->{source_uuid}:$date:" )
,
sub { $self->committed($date, $rev, @_) },
undef, 0));