Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align comments by removing typos and small adjustments between netfx and netcore #2956

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8604,7 +8604,7 @@ private void WriteLoginData(SqlLogin rec,
WriteShort(rec.hostName.Length, _physicalStateObj);
offset += rec.hostName.Length * 2;

// Only send user/password over if not fSSPI... If both user/password and SSPI are in login
// Only send user/password over if not fSSPI or fed auth MSAL... If both user/password and SSPI are in login
// rec, only SSPI is used. Confirmed same behavior as in luxor.
if (!rec.useSSPI && !(_connHandler._federatedAuthenticationInfoRequested || _connHandler._federatedAuthenticationRequested))
{
Expand Down Expand Up @@ -9165,7 +9165,7 @@ internal Task TdsExecuteSQLBatch(string text, int timeout, SqlNotificationReques
// set, so we need to handle them by using a different MARS session,
// otherwise we'll write on the physical state objects while someone
// else is using it. When we don't have MARS enabled, we need to
// lock the physical state object to synchronize it's use at least
// lock the physical state object to synchronize its use at least
// until we increment the open results count. Once it's been
// incremented the delegated transaction requests will fail, so they
// won't stomp on anything.
Expand Down Expand Up @@ -11622,7 +11622,7 @@ private Task WriteUnterminatedSqlValue(object value, MetaType type, int actualLe
Debug.Fail("Unknown TdsType!" + type.NullableType.ToString("x2", (IFormatProvider)null));
break;
} // switch
// return point for accumulated writes, note: non-accumulated writes returned from their case statements
// return point for accumulated writes, note: non-accumulated writes returned from their case statements
return null;
}

Expand Down Expand Up @@ -12334,7 +12334,7 @@ private Task WriteUnterminatedValue(object value, MetaType type, byte scale, int
Debug.Fail("Unknown TdsType!" + type.NullableType.ToString("x2", (IFormatProvider)null));
break;
} // switch
// return point for accumulated writes, note: non-accumulated writes returned from their case statements
// return point for accumulated writes, note: non-accumulated writes returned from their case statements
return null;
// Debug.WriteLine("value: " + value.ToString(CultureInfo.InvariantCulture));
}
Expand Down
Loading
Loading