X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Flookups%2Flsearch.c;h=6101d00ac521a54c2d7da1f9d07a3c32b0fdcbd7;hb=4fab92fbc2b63bac2d89c1dae69fa1845cb640b7;hp=eb70a45fab4691bb1fd2bff74a054f61377adfca;hpb=7a28511635d0d5f385a7c389bc5ec95dfed95581;p=exim.git diff --git a/src/src/lookups/lsearch.c b/src/src/lookups/lsearch.c index eb70a45fa..6101d00ac 100644 --- a/src/src/lookups/lsearch.c +++ b/src/src/lookups/lsearch.c @@ -258,7 +258,7 @@ for (last_was_eol = TRUE; ptr = 0; yield = store_get(size); if (*s != 0) - yield = string_cat(yield, &size, &ptr, s, Ustrlen(s)); + yield = string_cat(yield, &size, &ptr, s); /* Now handle continuations */ @@ -294,7 +294,7 @@ for (last_was_eol = TRUE; /* Join a physical or logical line continuation onto the result string. */ - yield = string_cat(yield, &size, &ptr, s, Ustrlen(s)); + yield = string_cat(yield, &size, &ptr, s); } yield[ptr] = 0;