Commit 2174aa0ac25e07d55fd758d9d5846e34de0403f2

Edward Thomson 2019-10-21T11:47:23

gssapi: correct incorrect case in error message

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/transports/auth_negotiate.c b/src/transports/auth_negotiate.c
index e924dc3..d06bf74 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;
 	}