X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/29f678881018103cc2aec85bdb51ea5830cf2e37..f988ce57300f2dcb7ddb63f767ef5ebef76b2aa4:/src/src/readconf.c diff --git a/src/src/readconf.c b/src/src/readconf.c index c5bd41d47..55bba4c05 100644 --- a/src/src/readconf.c +++ b/src/src/readconf.c @@ -253,7 +253,7 @@ static optionlist optionlist_config[] = { { "dns_retry", opt_int, &dns_retry }, { "dns_trust_aa", opt_stringptr, &dns_trust_aa }, { "dns_use_edns0", opt_int, &dns_use_edns0 }, - /* This option is now a no-op, retained for compability */ + /* This option is now a no-op, retained for compatibility */ { "drop_cr", opt_bool, &drop_cr }, /*********************************************************/ { "dsn_advertise_hosts", opt_stringptr, &dsn_advertise_hosts }, @@ -852,7 +852,7 @@ due to conflicts with other common macros. */ #ifdef TRANSPORT_APPENDFILE # ifdef SUPPORT_MAILDIR - macro_create(US"_HAVE_TRANSPORT_APPEND_MAILDR", US"y", FALSE, TRUE); + macro_create(US"_HAVE_TRANSPORT_APPEND_MAILDIR", US"y", FALSE, TRUE); # endif # ifdef SUPPORT_MAILSTORE macro_create(US"_HAVE_TRANSPORT_APPEND_MAILSTORE", US"y", FALSE, TRUE); @@ -2368,7 +2368,7 @@ switch (type) /* We get a coverity error here for using count, as it derived from the tainted buffer pointed to by s, as parsed by sscanf(). - By the definition of sscanf we must be aceessing between start + By the definition of sscanf we must be accessing between start and end of s (assuming it is nul-terminated...) so ignore the error. */ /* coverity[tainted_data] */ if (s[count] == '.') @@ -3377,18 +3377,19 @@ logging configuration errors (it changes for .included files) whereas config_main_filename is the name shown by -bP. Failure to open a configuration file is a serious disaster. */ -if (config_file != NULL) +if (config_file) { - uschar *slash = Ustrrchr(filename, '/'); + uschar *last_slash = Ustrrchr(filename, '/'); config_filename = config_main_filename = string_copy(filename); - /* the config_main_directory we need for the $config_dir expansion. + /* The config_main_directory we need for the $config_dir expansion. + config_main_filename we need for $config_file expansion. And config_dir is the directory of the current configuration, used for relative .includes. We do need to know it's name, as we change our working directory later. */ if (filename[0] == '/') - config_main_directory = slash > filename ? string_copyn(filename, slash - filename) : US"/"; + config_main_directory = last_slash == filename ? US"/" : string_copyn(filename, last_slash - filename); else { /* relative configuration file name: working dir + / + basename(filename) */ @@ -3396,7 +3397,6 @@ if (config_file != NULL) char buf[PATH_MAX]; int offset = 0; int size = 0; - const uschar *p = Ustrrchr(filename, '/'); if (getcwd(buf, PATH_MAX) == NULL) { @@ -3407,11 +3407,13 @@ if (config_file != NULL) /* If the dir does not end with a "/", append one */ if (config_main_directory[offset-1] != '/') - string_cat(config_main_directory, &size, &offset, US"/"); + config_main_directory = string_catn(config_main_directory, &size, &offset, US"/", 1); /* If the config file contains a "/", extract the directory part */ - if (p) - string_catn(config_main_directory, &size, &offset, filename, p - filename); + if (last_slash) + config_main_directory = string_catn(config_main_directory, &size, &offset, filename, last_slash - filename); + + config_main_directory[offset] = '\0'; } config_directory = config_main_directory; }