96a54b0907
See release announce: https://lists.gnu.org/archive/html/screen-users/2023-08/msg00000.html Fixes: CVE-2023-24626: https://www.cve.org/CVERecord?id=CVE-2023-24626 Note: Buildroot installs screen as setuid, so the described scenario in CVE applies. This commit also rebases all patches on this release. Patch were regenerated with 'git format-patch -N', so patch file name changed in this process. The file .checkpackageignore is also updated accordingly. Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
31 lines
895 B
Diff
31 lines
895 B
Diff
From 23a8ca6be87ad374d66854cee66ab758880cc651 Mon Sep 17 00:00:00 2001
|
|
From: Mike Gerwitz <mike@mikegerwitz.com>
|
|
Date: Tue, 24 Dec 2013 22:16:31 -0500
|
|
Subject: [PATCH] comm.h now depends on term.h
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
[Patch retrieved and updated from:
|
|
http://git.savannah.gnu.org/cgit/screen.git/commit/?id=39c5f1c]
|
|
[Julien: rebase on top of 4.9.1]
|
|
Signed-off-by: Julien Olivain <ju.o@free.fr>
|
|
---
|
|
Makefile.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index 4718f08..7082a3e 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -132,7 +132,7 @@ kmapdef.c: term.h
|
|
tty.c: tty.sh
|
|
sh $(srcdir)/tty.sh tty.c
|
|
|
|
-comm.h: comm.c comm.sh config.h
|
|
+comm.h: comm.c comm.sh config.h term.h
|
|
AWK=$(AWK) CC="$(CC) $(CFLAGS)" srcdir=${srcdir} sh $(srcdir)/comm.sh
|
|
|
|
osdef.h: osdef.sh config.h osdef.h.in
|
|
--
|
|
2.41.0
|
|
|