From 549d8a991de5806ba1e089e3c1eb2e3b0d3edd63 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Tue, 18 Apr 2023 15:09:21 +0200 Subject: [PATCH] BMP: Fix missing template It is mandatory for protocol. --- proto/bmp/bmp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/bmp/bmp.c b/proto/bmp/bmp.c index dbbb5e0c..48d16d6c 100644 --- a/proto/bmp/bmp.c +++ b/proto/bmp/bmp.c @@ -1138,6 +1138,7 @@ bmp_reconfigure(struct proto *P UNUSED, struct proto_config *CF UNUSED) struct protocol proto_bmp = { .name = "BMP", + .template = "bmp%d", .class = PROTOCOL_BMP, .proto_size = sizeof(struct bmp_proto), .config_size = sizeof(struct bmp_config),