From 249f39385d608eaa6a3daabce6f9bcfa15eb2d3c Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Sun, 23 Jul 2023 13:56:32 +0100 Subject: [PATCH] Fix use of typedef for FreeBSD Broken-by: 1209e3e19e29 --- src/src/expand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/src/expand.c b/src/src/expand.c index d8ea7ae6b..ae1657549 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -7862,7 +7862,7 @@ NOT_ITEM: ; case EOP_UTF8CLEAN: { int seq_len = 0, index = 0, bytes_left = 0, complete; - ulong codepoint = (ulong)-1; + u_long codepoint = (u_long)-1; uschar seq_buff[4]; /* accumulate utf-8 here */ /* Manually track tainting, as we deal in individual chars below */ -- 2.30.2