X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/f794c12b6991a528c7a950b05a6d4578f1041be8..f40d5be37b9adca10b16e6b576f84c65f69899f5:/src/src/readconf.c diff --git a/src/src/readconf.c b/src/src/readconf.c index 6f97dad69..8dd5915e4 100644 --- a/src/src/readconf.c +++ b/src/src/readconf.c @@ -4299,7 +4299,7 @@ for (i = config_lines; i; i = i->next) } /* router/acl/transport block names */ - else if (current[strlen(current)-1] == ':' && !Ustrchr(current, '=')) + else if (current[Ustrlen(current)-1] == ':' && !Ustrchr(current, '=')) { printf("%*s%s\n", TS, "", current); indent = 2 * TS; @@ -4312,7 +4312,7 @@ for (i = config_lines; i; i = i->next) ) ) { - if (p = Ustrchr(current, '=')) + if ((p = Ustrchr(current, '='))) { *p = '\0'; printf("%*s%s = %s\n", indent, "", current, hidden);