diff options
author | Matthias Urlichs <smurf@smurf.noris.de> | 2005-10-16 19:57:38 +0200 |
---|---|---|
committer | Matthias Urlichs <smurf@smurf.noris.de> | 2005-10-16 19:57:38 +0200 |
commit | 40dad96e41fcb96e31bdf11deec3c7bf6261adbe (patch) | |
tree | fb299ead98c109c95423ebb2736fa4ba4f43b01d /git-svnimport.perl | |
parent | f005dba7c15af5de74e05f8667da4e5d27cf6d1b (diff) | |
download | git-40dad96e41fcb96e31bdf11deec3c7bf6261adbe.tar.gz git-40dad96e41fcb96e31bdf11deec3c7bf6261adbe.tar.xz |
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 <smurf@smurf.noris.de>
Diffstat (limited to 'git-svnimport.perl')
-rwxr-xr-x | git-svnimport.perl | 3 |
1 files changed, 2 insertions, 1 deletions
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; } } |