Ibase lookup: fix compile error. Bug 3126
authorAndrew Aitchison <exim@aitchison.me.uk>
Sat, 7 Dec 2024 19:00:07 +0000 (19:00 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 7 Dec 2024 19:03:45 +0000 (19:03 +0000)
doc/doc-txt/ChangeLog
src/src/lookups/ibase.c

index cf9420b1924fb664c6ddb3b55b1185c6e3917605..c5a47662b1336ca0794bb0a03343feb088466d93 100644 (file)
@@ -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.
 
       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
 -----------------
 
 Exim version 4.98
 -----------------
 
index 6125b75b705dc2578293d23f6ab63bd8b67f1ffe..2bc6d86bb4a6623f285d35eec2422dde4d6d2c90 100644 (file)
@@ -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 */
   .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 */
   .find = ibase_find,                  /* find function */
   .close = NULL,                       /* no close function */
   .tidy = ibase_tidy,                  /* tidy function */