summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-09-11 20:19:30 +0000
committer Eric Hameleers <alien@slackware.com>2023-09-12 13:39:43 +0200
commit466ae7e51f0398e6bcd2bb9e535194735c67d80f (patch)
treeb4ffdec2677d366db832ac8ff3d53584d4167916 /patches
parent38f09f634fc7c66a2ed5857522e3809fc54c656b (diff)
downloadcurrent-466ae7e51f0398e6bcd2bb9e535194735c67d80f.tar.gz
current-466ae7e51f0398e6bcd2bb9e535194735c67d80f.tar.xz
Mon Sep 11 20:19:30 UTC 202320230911201930_15.0
patches/packages/openssl-1.1.1w-x86_64-1_slack15.0.txz: Upgraded. This update fixes bugs and a security issue that does not affect Linux: Fix POLY1305 MAC implementation corrupting XMM registers on Windows. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-4807 patches/packages/openssl-solibs-1.1.1w-x86_64-1_slack15.0.txz: Upgraded. patches/packages/vim-9.0.1897-x86_64-1_slack15.0.txz: Upgraded. Fixed three use-after-free security issues. Thanks to marav for the heads-up. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-4733 https://www.cve.org/CVERecord?id=CVE-2023-4752 https://www.cve.org/CVERecord?id=CVE-2023-4750 (* Security fix *) patches/packages/vim-gvim-9.0.1897-x86_64-1_slack15.0.txz: Upgraded. Fixed three use-after-free security issues. Thanks to marav for the heads-up. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-4733 https://www.cve.org/CVERecord?id=CVE-2023-4752 https://www.cve.org/CVERecord?id=CVE-2023-4750 (* Security fix *)
Diffstat (limited to 'patches')
-rw-r--r--patches/packages/openssl-1.1.1w-x86_64-1_slack15.0.txt (renamed from patches/packages/openssl-1.1.1v-x86_64-1_slack15.0.txt)0
-rw-r--r--patches/packages/openssl-solibs-1.1.1w-x86_64-1_slack15.0.txt (renamed from patches/packages/openssl-solibs-1.1.1v-x86_64-1_slack15.0.txt)0
-rw-r--r--patches/packages/vim-9.0.1897-x86_64-1_slack15.0.txt (renamed from patches/packages/vim-9.0.1678-x86_64-1_slack15.0.txt)0
-rw-r--r--patches/packages/vim-gvim-9.0.1897-x86_64-1_slack15.0.txt (renamed from patches/packages/vim-gvim-9.0.1678-x86_64-1_slack15.0.txt)0
-rw-r--r--patches/source/openssl/certwatch7
5 files changed, 6 insertions, 1 deletions
diff --git a/patches/packages/openssl-1.1.1v-x86_64-1_slack15.0.txt b/patches/packages/openssl-1.1.1w-x86_64-1_slack15.0.txt
index f6169bb30..f6169bb30 100644
--- a/patches/packages/openssl-1.1.1v-x86_64-1_slack15.0.txt
+++ b/patches/packages/openssl-1.1.1w-x86_64-1_slack15.0.txt
diff --git a/patches/packages/openssl-solibs-1.1.1v-x86_64-1_slack15.0.txt b/patches/packages/openssl-solibs-1.1.1w-x86_64-1_slack15.0.txt
index 65fe3aa52..65fe3aa52 100644
--- a/patches/packages/openssl-solibs-1.1.1v-x86_64-1_slack15.0.txt
+++ b/patches/packages/openssl-solibs-1.1.1w-x86_64-1_slack15.0.txt
diff --git a/patches/packages/vim-9.0.1678-x86_64-1_slack15.0.txt b/patches/packages/vim-9.0.1897-x86_64-1_slack15.0.txt
index 92e5d789f..92e5d789f 100644
--- a/patches/packages/vim-9.0.1678-x86_64-1_slack15.0.txt
+++ b/patches/packages/vim-9.0.1897-x86_64-1_slack15.0.txt
diff --git a/patches/packages/vim-gvim-9.0.1678-x86_64-1_slack15.0.txt b/patches/packages/vim-gvim-9.0.1897-x86_64-1_slack15.0.txt
index 0f9d01365..0f9d01365 100644
--- a/patches/packages/vim-gvim-9.0.1678-x86_64-1_slack15.0.txt
+++ b/patches/packages/vim-gvim-9.0.1897-x86_64-1_slack15.0.txt
diff --git a/patches/source/openssl/certwatch b/patches/source/openssl/certwatch
index d52dc3dc4..f2f041d5f 100644
--- a/patches/source/openssl/certwatch
+++ b/patches/source/openssl/certwatch
@@ -17,13 +17,18 @@ MAILADDR=root
# Directory with certificates to check
CERTDIR=/etc/ssl/certs
# Directory where to keep state files if this script isnt executed with "stdout"
-STATEDIR=/var/run
+STATEDIR=/var/state/certwatch
########################### CONFIGURATION SECTION END ##########################
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAY_IN_SECS=$((60*60*24))
DATE_CURRENT=$(date '+%s')
+# Ensure $STATEDIR exists:
+if [ ! -d $STATEDIR ]; then
+ mkdir -p $STATEDIR
+fi
+
usage()
{
echo "Usage: $0 [stdout]"