Commit fc1cc2051e057acd7749fad5a785ee6eab202f1a

Carlos Martín Nieto 2012-03-26T11:36:12

Use new error handling in the example network code

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/examples/network/git2.c b/examples/network/git2.c
index def56e8..aeb0e8f 100644
--- a/examples/network/git2.c
+++ b/examples/network/git2.c
@@ -31,7 +31,7 @@ int run_command(git_cb fn, int argc, char **argv)
 	// Run the command. If something goes wrong, print the error message to stderr
 	error = fn(repo, argc, argv);
 	if (error < GIT_SUCCESS)
-		fprintf(stderr, "Bad news:\n %s\n", git_lasterror());
+		fprintf(stderr, "Bad news:\n %s\n", git_error_last()->message);
 
 	if(repo)
 		git_repository_free(repo);