summaryrefslogtreecommitdiff
path: root/pullreqd.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-08 20:06:59 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-08 20:06:59 -0400
commit7d8c2263eb728c343853fc846a85586b16550cb7 (patch)
treed8a6c32c1fd11a7f680cdf23b1726939e316d1b8 /pullreqd.c
parentaa52668b36218a8ee85bab6da014b7e2c037cfc0 (diff)
Fixed a typo in `init_config()`.
Diffstat (limited to 'pullreqd.c')
-rw-r--r--pullreqd.c2
1 files changed, 1 insertions, 1 deletions
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);