Silence the compiler
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Sun, 25 Apr 2021 16:58:35 +0000 (18:58 +0200)
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Sun, 25 Apr 2021 16:58:35 +0000 (18:58 +0200)
src/src/log.c
src/src/transports/appendfile.c

index c2ef698e7f976d3d245f56c54bc39e8f394f6a5f..11d25919767862596175bef3545320d958e5f8d0 100644 (file)
@@ -651,7 +651,7 @@ set_file_path(BOOL *multiple)
 {
 uschar *s;
 int sep = ':';              /* Fixed separator - outside use */
-uschar *ss = *log_file_path ? log_file_path : LOG_FILE_PATH;
+const uschar *ss = *log_file_path ? log_file_path : US LOG_FILE_PATH;
 
 logging_mode = 0;
 while ((s = string_nextinlist(&ss, &sep, log_buffer, LOG_BUFFER_SIZE)))
@@ -1445,7 +1445,7 @@ unlink_log(lt_debug);
 }
 
 void
-open_logs(const char *m)
+open_logs(void)
 {
 set_file_path(NULL);
 open_log(&mainlogfd, lt_main, 0);
index 706af6dde2d61c3da683d167c53223e36a500a54..c0f4de4c83196095a430b51f301eb6f85e78de14 100644 (file)
@@ -218,7 +218,7 @@ Returns:     OK, FAIL, or DEFER
 */
 
 void
-openlogs();
+open_logs(void);
 
 static int
 appendfile_transport_setup(transport_instance *tblock, address_item *addrlist,
@@ -235,7 +235,7 @@ uid = uid;
 gid = gid;
 
 /* we can't wait until we're not privileged anymore */
-open_logs("appendfile");
+open_logs();
 
 if (ob->expand_maildir_use_size_file)
        ob->maildir_use_size_file = expand_check_condition(ob->expand_maildir_use_size_file,