summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-04-14 20:35:56 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-04-14 20:35:56 +0700
commit4ba5b5b44c69ab7c85f17c6cddaa32a19e179971 (patch)
treee2a99225891fef29084284c3e4c489af6b1c3f7b
parentAdd and use DtlsRecordCallback (diff)
downloadBouncyCastle.NET-ed25519-4ba5b5b44c69ab7c85f17c6cddaa32a19e179971.tar.xz
Fix warning
-rw-r--r--crypto/src/tls/DtlsServerProtocol.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/DtlsServerProtocol.cs b/crypto/src/tls/DtlsServerProtocol.cs

index cf16bc302..f2eaf31f8 100644 --- a/crypto/src/tls/DtlsServerProtocol.cs +++ b/crypto/src/tls/DtlsServerProtocol.cs
@@ -59,7 +59,7 @@ namespace Org.BouncyCastle.Tls AbortServerHandshake(state, recordLayer, fatalAlert.AlertDescription); throw; } - catch (IOException e) + catch (IOException) { AbortServerHandshake(state, recordLayer, AlertDescription.internal_error); throw;