We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf59162 commit 72f1c99Copy full SHA for 72f1c99
src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/SSPI/NegotiateSSPIContextProvider.cs
@@ -1,4 +1,4 @@
1
-#if NET
+#if NET
2
3
using System;
4
using System.Buffers;
@@ -26,7 +26,7 @@ protected override bool GenerateSspiClientContext(ReadOnlySpan<byte> incomingBlo
26
if (statusCode == NegotiateAuthenticationStatusCode.Completed || statusCode == NegotiateAuthenticationStatusCode.ContinueNeeded)
27
{
28
outgoingBlobWriter.Write(sendBuff);
29
- return true; // Successful case, exit the loop with current SPN.
+ return true;
30
}
31
32
return false;
0 commit comments