diff options
author | Maria Matejka <mq@jmq.cz> | 2020-04-08 22:25:15 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2020-04-09 15:37:14 +0200 |
commit | fd9f0c0640fd02a26b96b4f9d3cbbffbb6544a84 (patch) | |
tree | 3cfac115f49d41f3d62d41c4ddfffe50f2c381a4 /sysdep/unix/log.c | |
parent | a109056145a6bc8a6b498ecb6e309ebc143c8b3c (diff) |
Configuration strings are constant.
This is merely a const propagation. There was no problem in there.
Diffstat (limited to 'sysdep/unix/log.c')
-rw-r--r-- | sysdep/unix/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/unix/log.c b/sysdep/unix/log.c index 18894f98..e24322c6 100644 --- a/sysdep/unix/log.c +++ b/sysdep/unix/log.c @@ -332,7 +332,7 @@ debug(const char *msg, ...) } static list * -default_log_list(int initial, char **syslog_name) +default_log_list(int initial, const char **syslog_name) { static list log_list; init_list(&log_list); @@ -365,7 +365,7 @@ default_log_list(int initial, char **syslog_name) } void -log_switch(int initial, list *logs, char *new_syslog_name) +log_switch(int initial, list *logs, const char *new_syslog_name) { struct log_config *l; |