From: Matthias Urlichs Date: Sun, 16 Oct 2005 17:57:38 +0000 (+0200) Subject: svn commit: re-word the exit-due-to-memory-leak message X-Git-Tag: v0.99.9~112^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=40dad96e41fcb96e31bdf11deec3c7bf6261adbe;p=git.git svn commit: re-word the exit-due-to-memory-leak message Reworded the exit message, as per Kalle Valo's suggestion (but shorter). Signed-Off-By: Matthias Urlichs --- diff --git a/git-svnimport.perl b/git-svnimport.perl index aa8fa404e..45486a852 100755 --- a/git-svnimport.perl +++ b/git-svnimport.perl @@ -677,7 +677,8 @@ while(++$current_rev <= $svn->{'maxrev'}) { $svn->{'svn'}->get_log("/",$current_rev,$current_rev,$current_rev,1,1,\&_commit_all,""); commit_all(); if($opt_l and not --$opt_l) { - print STDERR "Exiting due to a memory leak. Repeat, please.\n"; + print STDERR "Stopping, because there is a memory leak (in the SVN library).\n"; + print STDERR "Please repeat this command; it will continue safely\n"; last; } }