Commit c55c624441944d61d379ce5d3e58b945c52c7c8b

Zhao Cheng 2013-01-18T13:22:55

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));