summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2021-02-13 17:26:14 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2021-02-19 19:50:59 +0000
commitb099c4cea4ade08e8428b31ded5947b8386aab32 (patch)
tree35758d4ad7f1cf9bd585ff4cbebdfe00625f4ceb
parent90e320fb14cc946f4eb5671618e7db9f5d002453 (diff)
downloadexim4-b099c4cea4ade08e8428b31ded5947b8386aab32.tar.gz
Fix build for platforms not having ulong
(cherry picked from commit be839a2609381f535f263ed0c459a4ebf3fd5d1d)
-rw-r--r--src/src/transports/appendfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/transports/appendfile.c b/src/src/transports/appendfile.c
index 9947971d9..8ab8b6016 100644
--- a/src/src/transports/appendfile.c
+++ b/src/src/transports/appendfile.c
@@ -1784,7 +1784,7 @@ if (!isdirectory)
{
addr->basic_errno = ERRNO_NOTREGULAR;
addr->message = string_sprintf("mailbox %s%s has too many links (%lu)",
- filename, islink ? " (symlink)" : "", (ulong)statbuf.st_nlink);
+ filename, islink ? " (symlink)" : "", (unsigned long)statbuf.st_nlink);
goto RETURN;
}