summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-10-21 11:47:23 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2020-01-24 09:54:28 -0600
commit2174aa0ac25e07d55fd758d9d5846e34de0403f2 (patch)
tree8e5ef28c9f41d6119e1ac44ee39935f1d384f15f
parent3f6fe05495eaf53d937e2cfb2ed25817d96d08ed (diff)
downloadlibgit2-2174aa0ac25e07d55fd758d9d5846e34de0403f2.tar.gz
gssapi: correct incorrect case in error message
-rw-r--r--src/transports/auth_negotiate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transports/auth_negotiate.c b/src/transports/auth_negotiate.c
index e924dc37e..d06bf746f 100644
--- a/src/transports/auth_negotiate.c
+++ b/src/transports/auth_negotiate.c
@@ -105,7 +105,7 @@ static int negotiate_next_token(
if (GSS_ERROR(status_major)) {
negotiate_err_set(status_major, status_minor,
- "Could not parse principal");
+ "could not parse principal");
error = -1;
goto done;
}