1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

RPKI: Fix reconfiguration when ssh parameters are undefined

This commit is contained in:
Ondrej Zajicek (work)
2019-07-23 01:52:18 +02:00
parent d843c27478
commit 15b0a92294
5 changed files with 29 additions and 9 deletions

View File

@@ -387,8 +387,7 @@ log_switch(int initial, list *logs, char *new_syslog_name)
current_log_list = logs;
#ifdef HAVE_SYSLOG_H
if (current_syslog_name && new_syslog_name &&
!strcmp(current_syslog_name, new_syslog_name))
if (!bstrcmp(current_syslog_name, new_syslog_name))
return;
if (current_syslog_name)