mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
0ab769ac69
patches/packages/dnsmasq-2.87-x86_64-1_slack15.0.txz: Upgraded. Fix write-after-free error in DHCPv6 server code. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0934 (* Security fix *) patches/packages/vim-9.0.0594-x86_64-1_slack15.0.txz: Upgraded. Fixed stack-based buffer overflow. Thanks to marav for the heads-up. In addition, Mig21 pointed out an issue where the defaults.vim file might need to be edited for some purposes as its contents will override the settings in the system-wide vimrc. Usually this file is replaced whenever vim is upgraded, which in those situations would be inconvenient for the admin. So, I've added support for a file named defaults.vim.custom which (if it exists) will be used instead of the defaults.vim file shipped in the package and will persist through upgrades. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3296 (* Security fix *) patches/packages/vim-gvim-9.0.0594-x86_64-1_slack15.0.txz: Upgraded.
24 lines
1.1 KiB
Diff
24 lines
1.1 KiB
Diff
diff -Nur dnsmasq-2.52.orig/dnsmasq.conf.example dnsmasq-2.52/dnsmasq.conf.example
|
|
--- dnsmasq-2.52.orig/dnsmasq.conf.example 2009-11-25 06:55:16.000000000 -0600
|
|
+++ dnsmasq-2.52/dnsmasq.conf.example 2010-01-22 15:32:41.137807274 -0600
|
|
@@ -415,7 +415,7 @@
|
|
# The DHCP server needs somewhere on disk to keep its lease database.
|
|
# This defaults to a sane location, but if you want to change it, use
|
|
# the line below.
|
|
-#dhcp-leasefile=/var/lib/misc/dnsmasq.leases
|
|
+#dhcp-leasefile=/var/state/dnsmasq/dnsmasq.leases
|
|
|
|
# Set the DHCP server to authoritative mode. In this mode it will barge in
|
|
# and take over the lease for any client which broadcasts on the network,
|
|
diff -Nur dnsmasq-2.52.orig/src/config.h dnsmasq-2.52/src/config.h
|
|
--- dnsmasq-2.52.orig/src/config.h 2010-01-21 08:22:06.000000000 -0600
|
|
+++ dnsmasq-2.52/src/config.h 2010-01-22 15:32:41.136833058 -0600
|
|
@@ -47,7 +47,7 @@
|
|
# elif defined(__sun__) || defined (__sun)
|
|
# define LEASEFILE "/var/cache/dnsmasq.leases"
|
|
# else
|
|
-# define LEASEFILE "/var/lib/misc/dnsmasq.leases"
|
|
+# define LEASEFILE "/var/state/dnsmasq/dnsmasq.leases"
|
|
# endif
|
|
#endif
|
|
|