Skip to content
Snippets Groups Projects
Verified Commit 33c11318 authored by Josh Soref's avatar Josh Soref Committed by Tomas Krizek
Browse files

edns_keepalive: fix loading of module


Due to the typo in the EDNS keepalive init funcion name, the module
wouldn't be properly initialized after loading and wouldn't be
functional.

Signed-off-by: default avatarJosh Soref <jsoref@users.noreply.github.com>
parent 766198e7
Branches
Tags
1 merge request!1229spelling & edns_keepalive fix
......@@ -48,7 +48,7 @@ static int edns_keepalive_finalize(kr_layer_t *ctx)
return ctx->state;
}
KR_EXPORT int edns_keeapalive_init(struct kr_module *self)
KR_EXPORT int edns_keepalive_init(struct kr_module *self)
{
static const kr_layer_api_t layer = {
.answer_finalize = &edns_keepalive_finalize,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment