Skip to content

Commit 5890cd2

Browse files
committed
Fixed typo.
1 parent 778f98b commit 5890cd2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Provider/src/FirebirdSql.Data.FirebirdClient/Client/Managed/GdsConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ public static IResponse ProcessOperation(int operation, XdrStream xdr)
363363
return new AuthResponse(xdr.ReadBuffer());
364364

365365
case IscCodes.op_crypt_key_callback:
366-
return new CryptKeyCallbackReponse(xdr.ReadBuffer());
366+
return new CryptKeyCallbackResponse(xdr.ReadBuffer());
367367

368368
default:
369369
return null;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020

2121
namespace FirebirdSql.Data.Client.Managed.Version13
2222
{
23-
internal class CryptKeyCallbackReponse : IResponse
23+
internal class CryptKeyCallbackResponse : IResponse
2424
{
2525
public byte[] Data { get; }
2626

27-
public CryptKeyCallbackReponse(byte[] data)
27+
public CryptKeyCallbackResponse(byte[] data)
2828
{
2929
Data = data;
3030
}

Provider/src/FirebirdSql.Data.FirebirdClient/Client/Managed/Version13/GdsDatabase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public override void AttachWithTrustedAuth(DatabaseParameterBuffer dpb, string d
122122

123123
public IResponse ProcessCryptCallbackResponseIfNeeded(IResponse response, byte[] cryptKey)
124124
{
125-
while (response is CryptKeyCallbackReponse cryptResponse)
125+
while (response is CryptKeyCallbackResponse cryptResponse)
126126
{
127127
XdrStream.Write(IscCodes.op_crypt_key_callback);
128128
XdrStream.WriteBuffer(cryptKey);

0 commit comments

Comments
 (0)