Commit dc98cb28db852da5cc2820ff502f86fd69977b6b

Patrick Steinhardt 2016-10-31T13:50:23

openssl_stream: fix typo

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/openssl_stream.c b/src/openssl_stream.c
index b8ab21f..cab7d94 100644
--- a/src/openssl_stream.c
+++ b/src/openssl_stream.c
@@ -148,7 +148,7 @@ int git_openssl_set_locking(void)
 	git__on_shutdown(shutdown_ssl_locking);
 	return 0;
 #else
-	giterr_set(GITERR_THREAD, "libgit2 as not built with threads");
+	giterr_set(GITERR_THREAD, "libgit2 was not built with threads");
 	return -1;
 #endif
 }