Commit 537abd4a2cf2e412b20d275e64b57ab8982f3ca0

Vicent Martí 2013-01-17T22:09:57

Merge pull request #1258 from zcbenz/fix_index_remove_test Fix linking error caused by ddcb28a41f3774e26fc6ae0a7174a5565e4749ce.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests-clar/status/worktree.c b/tests-clar/status/worktree.c
index ead1bc7..e1fc8df 100644
--- a/tests-clar/status/worktree.c
+++ b/tests-clar/status/worktree.c
@@ -588,7 +588,7 @@ static void stage_and_commit(git_repository *repo, const char *path)
 	git_index *index;
 
 	cl_git_pass(git_repository_index(&index, repo));
-	cl_git_pass(git_index_add_from_workdir(index, path));
+	cl_git_pass(git_index_add_bypath(index, path));
 	cl_git_pass(git_index_write(index));
 
 	cl_git_pass(git_index_write_tree(&tree_oid, index));