summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Pennock <pdp@exim.org>2014-07-14 03:04:16 -0400
committerPhil Pennock <pdp@exim.org>2014-07-14 03:04:16 -0400
commitca492d885a01e0bf0b9abfab456c31d5c087588c (patch)
tree7f23f5bd68f9843f630c70bae87f5829a5254cef
parentcb54b2a05b5f5f3548ac98e74b90eb8633052919 (diff)
downloadexim4-ca492d885a01e0bf0b9abfab456c31d5c087588c.tar.gz
Use Ustrlen() on a uschar
-rw-r--r--src/src/expand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/expand.c b/src/src/expand.c
index c0edef651..88a5ee399 100644
--- a/src/src/expand.c
+++ b/src/src/expand.c
@@ -5908,7 +5908,7 @@ while (*s != 0)
if (vp && *(void **)vp->value)
{
uschar * cp = tls_cert_fprt_sha256(*(void **)vp->value);
- yield = string_cat(yield, &size, &ptr, cp, (int)strlen(cp));
+ yield = string_cat(yield, &size, &ptr, cp, (int)Ustrlen(cp));
}
else
#endif