26 lines
765 B
Diff
26 lines
765 B
Diff
From fc832e4648d6e80e95aaa762a158453ee43fe1cb Mon Sep 17 00:00:00 2001
|
|
From: "(GalaxyMaster)" <galaxy4public@users.noreply.github.com>
|
|
Date: Wed, 27 Oct 2021 20:14:42 +1100
|
|
Subject: [PATCH] Fixes the linking issues when libsubid is static and linked
|
|
to binaries that also define the Prog and shadow_logfd variables.
|
|
|
|
---
|
|
libsubid/api.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/libsubid/api.c b/libsubid/api.c
|
|
index a7b904d0..a51b4e01 100644
|
|
--- a/libsubid/api.c
|
|
+++ b/libsubid/api.c
|
|
@@ -39,8 +39,8 @@
|
|
#include "idmapping.h"
|
|
#include "subid.h"
|
|
|
|
-const char *Prog = "(libsubid)";
|
|
-FILE *shadow_logfd;
|
|
+static const char *Prog = "(libsubid)";
|
|
+static FILE *shadow_logfd;
|
|
|
|
bool libsubid_init(const char *progname, FILE * logfd)
|
|
{
|