[openwrt/openwrt] procd: add patch to fix compilation error

LEDE Commits lede-commits at lists.infradead.org
Sun Dec 4 07:06:40 PST 2022


ansuel pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/1392bec7de92888af06d98d11d306241b2e1f68f

commit 1392bec7de92888af06d98d11d306241b2e1f68f
Author: Christian Marangi <ansuelsmth at gmail.com>
AuthorDate: Tue Nov 29 16:35:48 2022 +0100

    procd: add patch to fix compilation error
    
    procd complain for an unused verbose variable causing compilation error.
    Fix this by setting the variable static following upstream procd
    changes.
    
    This is a variant of 0ee73b2c86a853ae3274c7080e2dcd36b81aa1fa that
    introduced major change and fixed the verbose variable to static.
    
    Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
---
 ...mpilation-error-caused-by-unused-variable.patch | 36 ++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/package/system/procd/patches/0001-uxc-fix-compilation-error-caused-by-unused-variable.patch b/package/system/procd/patches/0001-uxc-fix-compilation-error-caused-by-unused-variable.patch
new file mode 100644
index 0000000000..6c1a21ebea
--- /dev/null
+++ b/package/system/procd/patches/0001-uxc-fix-compilation-error-caused-by-unused-variable.patch
@@ -0,0 +1,36 @@
+From 2ddf0005298e08ba1e358d95be6b826c56a7d1fc Mon Sep 17 00:00:00 2001
+From: Christian Marangi <ansuelsmth at gmail.com>
+Date: Tue, 29 Nov 2022 16:33:23 +0100
+Subject: [PATCH] uxc: fix compilation error caused by unused variable
+
+Fix compilation error caused by unused verbose variable.
+
+Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
+---
+ uxc.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/uxc.c b/uxc.c
+index eb40eb2..b22d838 100644
+--- a/uxc.c
++++ b/uxc.c
+@@ -80,6 +80,8 @@ static struct blob_buf conf;
+ static struct blob_buf state;
+ static struct ubus_context *ctx;
+ 
++static bool verbose = false;
++
+ static int usage(void) {
+ 	printf("syntax: uxc <command> [parameters ...]\n");
+ 	printf("commands:\n");
+@@ -724,7 +726,6 @@ int main(int argc, char **argv)
+ 	char *pidfile = NULL;
+ 	bool autostart = false;
+ 	bool force = false;
+-	bool verbose = false;
+ 	int signal = SIGTERM;
+ 	int c;
+ 
+-- 
+2.37.2
+




More information about the lede-commits mailing list