Fix bipmkpw compilation issues per external variables

- Add missing extern stanza to global variables

Signed-off-by: Loïc Gomez <bip@animanova.fr>
This commit is contained in:
Loïc Gomez 2024-02-07 18:17:37 +09:00
parent 76c9ee11de
commit 5f054bdded
Signed by: Kyoshiro
GPG Key ID: F80C2F71E89B990A
1 changed files with 3 additions and 3 deletions

View File

@ -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)
{