Commit f6130fc7 authored by jeffke_cp's avatar jeffke_cp

Fixed typo in TcpOptionAuthentication.cs: 'return...

Fixed typo in TcpOptionAuthentication.cs: 'return MessageAuthenticationCode.Concatenate(...' should be 'return MessageAuthenticationCode.Concat(...'
parent de86c525
......@@ -128,7 +128,7 @@ namespace PcapDotNet.Packets.Transport
internal override int GetDataHashCode()
{
return MessageAuthenticationCode.Concatenate(KeyId, RequestedNextKeyId).BytesSequenceGetHashCode();
return MessageAuthenticationCode.Concat(KeyId, RequestedNextKeyId).BytesSequenceGetHashCode();
}
internal override void Write(byte[] buffer, ref int offset)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment