From 260dba101f31de6ba6313c30fc8293a8ad4b4d94 Mon Sep 17 00:00:00 2001 From: Andrew Aitchison Date: Sat, 7 Dec 2024 19:00:07 +0000 Subject: [PATCH] Ibase lookup: fix compile error. Bug 3126 --- doc/doc-txt/ChangeLog | 3 +++ src/src/lookups/ibase.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index cf9420b19..c5a47662b 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -87,6 +87,9 @@ JH/16 Bug 3124: Fix theoretical crash in received connection, triggerable by a issue was in the coding for logging preceding that refusal. If coredumps were enabled (not common), an attack could cause filesystem space usage. +JH/17 Bug 3126: Fix build error in the ibase lookup. Find & fix by + Andrew Aitchison. + Exim version 4.98 ----------------- diff --git a/src/src/lookups/ibase.c b/src/src/lookups/ibase.c index 6125b75b7..2bc6d86bb 100644 --- a/src/src/lookups/ibase.c +++ b/src/src/lookups/ibase.c @@ -544,7 +544,7 @@ static lookup_info _lookup_info = { .name = US"ibase", /* lookup name */ .type = lookup_querystyle, /* query-style lookup */ .open = ibase_open, /* open function */ - .check NULL, /* no check function */ + .check = NULL, /* no check function */ .find = ibase_find, /* find function */ .close = NULL, /* no close function */ .tidy = ibase_tidy, /* tidy function */ -- 2.30.2