summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2022-11-17 20:02:33 +0000
committer Eric Hameleers <alien@slackware.com>2022-11-18 13:30:33 +0100
commit860213618e120d44bcfa4d2c6fae79b2faf94b19 (patch)
tree750113b11d5e2f7fdb450fd8ab0b44bad1cf6c2a /patches
parent45ec128defe50bcf5f3b67d607a7292fa44e78a2 (diff)
downloadcurrent-860213618e120d44bcfa4d2c6fae79b2faf94b19.tar.gz
current-860213618e120d44bcfa4d2c6fae79b2faf94b19.tar.xz
Thu Nov 17 20:02:33 UTC 202220221117200233_15.0
patches/packages/freerdp-2.9.0-x86_64-1_slack15.0.txz: Upgraded. Fixed multiple client side input validation issues. For more information, see: https://www.cve.org/CVERecord?id=CVE-2022-39316 https://www.cve.org/CVERecord?id=CVE-2022-39317 https://www.cve.org/CVERecord?id=CVE-2022-39318 https://www.cve.org/CVERecord?id=CVE-2022-39319 https://www.cve.org/CVERecord?id=CVE-2022-39320 https://www.cve.org/CVERecord?id=CVE-2022-41877 https://www.cve.org/CVERecord?id=CVE-2022-39347 (* Security fix *)
Diffstat (limited to 'patches')
-rw-r--r--patches/packages/freerdp-2.9.0-x86_64-1_slack15.0.txt (renamed from patches/packages/freerdp-2.7.0-x86_64-1_slack15.0.txt)0
-rwxr-xr-xpatches/source/freerdp/freerdp.SlackBuild2
2 files changed, 1 insertions, 1 deletions
diff --git a/patches/packages/freerdp-2.7.0-x86_64-1_slack15.0.txt b/patches/packages/freerdp-2.9.0-x86_64-1_slack15.0.txt
index 93d71ede4..93d71ede4 100644
--- a/patches/packages/freerdp-2.7.0-x86_64-1_slack15.0.txt
+++ b/patches/packages/freerdp-2.9.0-x86_64-1_slack15.0.txt
diff --git a/patches/source/freerdp/freerdp.SlackBuild b/patches/source/freerdp/freerdp.SlackBuild
index 43dee4f6d..c7018045f 100755
--- a/patches/source/freerdp/freerdp.SlackBuild
+++ b/patches/source/freerdp/freerdp.SlackBuild
@@ -30,7 +30,7 @@ BUILD=${BUILD:-1_slack15.0}
if [ -z "$ARCH" ]; then
case "$(uname -m)" in
i?86) ARCH=i586 ;;
- arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
+ arm*) readelf /usr/bin/file -A | grep -E -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$(uname -m) ;;
esac