From 9b4b5852f29666b45e55d3d94d571975fa38194a Mon Sep 17 00:00:00 2001 From: ovari123 Date: Sun, 1 Dec 2024 17:30:56 -0400 Subject: [PATCH] cleanup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... → … wish → want Change-Id: Iedfd8fcf6cdb56819b80a954d511f83eb2b8e906 --- BUILD.md | 4 ++-- src/security/tls_session.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILD.md b/BUILD.md index de828107..e68354cc 100644 --- a/BUILD.md +++ b/BUILD.md @@ -34,7 +34,7 @@ brew install gnutls msgpack-cxx argon2 asio ## Building Instructions -Follow these steps to build DHTNet ( Note: You will need ressources (RAM, CPU) for the build to succeed ): +Follow these steps to build DHTNet (Note: You will need ressources (RAM, CPU) for the build to succeed): ### 1. Clone the DHTNet repository @@ -78,4 +78,4 @@ sudo make install ## Contributing -If you encounter issues or wish to contribute to DHTNet's development, please visit the [GitHub repository](https://github.com/savoirfairelinux/dhtnet) for more details on how to get involved. +If you encounter issues or want to contribute to DHTNet's development, please visit the [GitHub repository](https://github.com/savoirfairelinux/dhtnet) for more details on how to get involved. diff --git a/src/security/tls_session.cpp b/src/security/tls_session.cpp index 96f88574..5110346f 100644 --- a/src/security/tls_session.cpp +++ b/src/security/tls_session.cpp @@ -1596,7 +1596,7 @@ TlsSession::TlsSessionImpl::handleStateEstablished(TlsSessionState state) if (params_.logger) params_.logger->e("[TLS] fatal error in recv: %s", gnutls_strerror(ret)); state = TlsSessionState::SHUTDOWN; - } // else non-fatal error... let's continue + } // else non-fatal error… let's continue return state; }