From 5864cbd7486c6668429cd28468b9b7a6b208c411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 21 Mar 2025 09:15:01 +0100 Subject: New debian/patches/0130-chassis_bootparam.patch --- debian/patches/0130-chassis_bootparam.patch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 debian/patches/0130-chassis_bootparam.patch (limited to 'debian/patches/0130-chassis_bootparam.patch') diff --git a/debian/patches/0130-chassis_bootparam.patch b/debian/patches/0130-chassis_bootparam.patch new file mode 100644 index 0000000..3e44bd1 --- /dev/null +++ b/debian/patches/0130-chassis_bootparam.patch @@ -0,0 +1,21 @@ +Description: fix 'chassis bootparam .. options=no-timeout' +Author: +Origin: https://codeberg.org/IPMITool/ipmitool/commit/b67f400825e55bd82f609f40c9c612b4c9961e3e +Bug: https://codeberg.org/IPMITool/ipmitool/pulls/19 +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1099886 +Last-Update: 2025-03-21 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/lib/ipmi_chassis.c +=================================================================== +--- trunk.orig/lib/ipmi_chassis.c ++++ trunk/lib/ipmi_chassis.c +@@ -1049,7 +1049,7 @@ get_bootparam_options(char *optstring, + optionError = 1; + break; + } +- if (!strcmp(token, "no-")) { ++ if (strncmp(token, "no-", 3) == 0) { + setbit = 1; + token += 3; + } -- cgit v1.2.3