From 7d8c2263eb728c343853fc846a85586b16550cb7 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 8 Jun 2021 20:06:59 -0400 Subject: Fixed a typo in `init_config()`. --- pullreqd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pullreqd.c b/pullreqd.c index 1c76241..26c14e8 100644 --- a/pullreqd.c +++ b/pullreqd.c @@ -73,7 +73,7 @@ int init_config(char *config_file, config **cfg) { if (*cfg != NULL) { syslog(LOG_INFO, "Successfully read %s.", config_file); } else { - syslog(LOG_ERROR, "Error reading %s.", config_file); + syslog(LOG_ERR, "Error reading %s.", config_file); } return (*cfg != NULL); -- cgit v1.2.3-13-gbd6f