Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4e91020

Browse files
dbussinkEdward Thomson
authored and
Edward Thomson
committed
Start error string with lower case character
1 parent c1ec732 commit 4e91020

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/settings.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ int git_libgit2_opts(int key, ...)
175175
}
176176
}
177177
#else
178-
giterr_set(GITERR_NET, "Cannot set certificate locations: OpenSSL is not enabled");
178+
giterr_set(GITERR_NET, "cannot set certificate locations: OpenSSL is not enabled");
179179
error = -1;
180180
#endif
181181
break;
@@ -204,7 +204,7 @@ int git_libgit2_opts(int key, ...)
204204
}
205205
}
206206
#else
207-
giterr_set(GITERR_NET, "Cannot set custom ciphers: OpenSSL is not enabled");
207+
giterr_set(GITERR_NET, "cannot set custom ciphers: OpenSSL is not enabled");
208208
error = -1;
209209
#endif
210210
break;

0 commit comments

Comments
 (0)