Start error string with lower case character

This commit is contained in:
Dirkjan Bussink 2016-03-14 12:41:12 +00:00
parent fa72d6daf8
commit 8f4cbc76bd

View File

@ -175,7 +175,7 @@ int git_libgit2_opts(int key, ...)
}
}
#else
giterr_set(GITERR_NET, "Cannot set certificate locations: OpenSSL is not enabled");
giterr_set(GITERR_NET, "cannot set certificate locations: OpenSSL is not enabled");
error = -1;
#endif
break;
@ -204,7 +204,7 @@ int git_libgit2_opts(int key, ...)
}
}
#else
giterr_set(GITERR_NET, "Cannot set custom ciphers: OpenSSL is not enabled");
giterr_set(GITERR_NET, "cannot set custom ciphers: OpenSSL is not enabled");
error = -1;
#endif
break;