diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-04-29 23:06:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-29 23:06:30 -0700 |
commit | 68951af30c2ac7f74f0d794a8674ac320a84250a (patch) | |
tree | 03bd7cf70ba460bfdf81201ef5d8116d9367d778 /git-cvsimport.perl | |
parent | f0ec47b8e7f46e17e6b6fe1cead728fa24477e43 (diff) | |
parent | 30c0312fd182942c10421e77d2b3ec6284cc0468 (diff) | |
download | git-68951af30c2ac7f74f0d794a8674ac320a84250a.tar.gz git-68951af30c2ac7f74f0d794a8674ac320a84250a.tar.xz |
Merge branch 'maint'
* maint:
cvsimport: always pass user data to "system" as a list
fix reflog approxidate parsing bug
Fix use after free() in builtin-fetch
fetch-pack: do not stop traversing an already parsed commit
Use "=" instead of "==" in condition as it is more portable
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-x | git-cvsimport.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl index 95c5eec51..bdac5d51b 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -772,7 +772,7 @@ sub commit { waitpid($pid,0); die "Error running git-commit-tree: $?\n" if $?; - system("git-update-ref $remote/$branch $cid") == 0 + system('git-update-ref', "$remote/$branch", $cid) == 0 or die "Cannot write branch $branch for update: $!\n"; if ($tag) { |