From 5f054bddedb610b3c091f2d96248cf9e9a4b8d67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Gomez?= Date: Wed, 7 Feb 2024 18:17:37 +0900 Subject: [PATCH] Fix bipmkpw compilation issues per external variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add missing extern stanza to global variables Signed-off-by: Loïc Gomez --- src/bipmkpw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bipmkpw.c b/src/bipmkpw.c index 416a2e0..9851415 100644 --- a/src/bipmkpw.c +++ b/src/bipmkpw.c @@ -23,9 +23,9 @@ #include "util.h" #include "md5.h" -int conf_log_level; -FILE *conf_global_log_file; -int conf_log_system; +extern int conf_log_level; +extern FILE *conf_global_log_file; +extern int conf_log_system; void bipmkpw_fatal(char *msg, char *err) {