diff --git a/.github/workflows/close-inactive-issues.yml b/.github/workflows/close-inactive-issues.yml
deleted file mode 100644
index 4495c2b05..000000000
--- a/.github/workflows/close-inactive-issues.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-name: Close inactive issues
-on:
- schedule:
- - cron: "30 2 * * *"
-
-jobs:
- close-issues:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/stale@v3
- with:
- days-before-issue-stale: 365
- days-before-issue-close: 60
- stale-issue-label: "stale"
- stale-issue-message: "This issue is stale because it has been open for 365 days with no activity."
- close-issue-message: "This issue was closed because it has been inactive for 60 days since being marked as stale."
- days-before-pr-stale: -1
- days-before-pr-close: -1
- repo-token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/Foundation/Foundation_vs160.vcxproj b/Foundation/Foundation_vs160.vcxproj
index a69d0c9e6..3d6d4bff5 100644
--- a/Foundation/Foundation_vs160.vcxproj
+++ b/Foundation/Foundation_vs160.vcxproj
@@ -55,7 +55,6 @@
{B01196CC-B693-4548-8464-2FF60499E73F}
Foundation
Win32Proj
- 8.1
diff --git a/NetSSL_OpenSSL/src/SecureSocketImpl.cpp b/NetSSL_OpenSSL/src/SecureSocketImpl.cpp
index 6fd0147d6..871e4d00d 100644
--- a/NetSSL_OpenSSL/src/SecureSocketImpl.cpp
+++ b/NetSSL_OpenSSL/src/SecureSocketImpl.cpp
@@ -518,11 +518,11 @@ int SecureSocketImpl::handleError(int rc)
// these should not occur
poco_bugcheck();
return rc;
-// SSL_GET_ERROR(3ossl):
-// On an unexpected EOF, versions before OpenSSL 3.0 returned
-// SSL_ERROR_SYSCALL, nothing was added to the error stack, and
-// errno was 0. Since OpenSSL 3.0 the returned error is
-// SSL_ERROR_SSL with a meaningful error on the error stack.
+ // SSL_GET_ERROR(3ossl):
+ // On an unexpected EOF, versions before OpenSSL 3.0 returned
+ // SSL_ERROR_SYSCALL, nothing was added to the error stack, and
+ // errno was 0. Since OpenSSL 3.0 the returned error is
+ // SSL_ERROR_SSL with a meaningful error on the error stack.
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
case SSL_ERROR_SSL:
#else