From: Alexander Litvinov <lan@ac-sw.com>
Date: Wed, 9 Nov 2005 07:02:58 +0000 (+0600)
Subject: Fix cvsexportcommit syntax error
X-Git-Tag: v0.99.9g^2~8
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253;p=git

Fix cvsexportcommit syntax error

There is a syntax error in cvsexport script:

Signed-off-by: Junio C Hamano <junkio@cox.net>
---

diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl
index 7074b0c21b..50b041c324 100755
--- a/git-cvsexportcommit.perl
+++ b/git-cvsexportcommit.perl
@@ -64,7 +64,7 @@ if ($parent) {
 	    last;
 	}; # found it
 	die "Did not find $parent in the parents for this commit!";
-s    }
+    }
 } else { # we don't have a parent from the cmdline...
     if (@parents == 1) { # it's safe to get it from the commit
 	$parent = $parents[0];