Skip to content

Commit 565d38c

Browse files
committed
dkimf_config_load: skip consistency check for signing table if the db
does not support db walk operation * opendkim/opendkim.c (dkimf_config_load): As above
1 parent 3c60fa8 commit 565d38c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opendkim/opendkim.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8323,7 +8323,8 @@ dkimf_config_load(struct config *data, struct dkimf_config *conf,
83238323
** missing KeyTable entries.
83248324
*/
83258325

8326-
if (conf->conf_signtabledb != NULL)
8326+
if (conf->conf_signtabledb != NULL &&
8327+
dkimf_can_db_walk(conf->conf_signtabledb))
83278328
{
83288329
_Bool first = TRUE;
83298330
_Bool found;

0 commit comments

Comments
 (0)