Test fix.

pull/2438/head
Roger A. Light 4 years ago
parent 9578a38f79
commit 6e8925c062

@ -231,7 +231,7 @@ void plugin_persist__handle_retain_add(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
void plugin_persist__handle_retain_remove(struct mosquitto_msg_store *msg) void plugin_persist__handle_retain_delete(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }

@ -175,7 +175,7 @@ void plugin_persist__handle_client_msg_add(struct mosquitto *context, const stru
UNUSED(context); UNUSED(context);
UNUSED(cmsg); UNUSED(cmsg);
} }
void plugin_persist__handle_client_msg_remove(struct mosquitto *context, const struct mosquitto_client_msg *cmsg) void plugin_persist__handle_client_msg_delete(struct mosquitto *context, const struct mosquitto_client_msg *cmsg)
{ {
UNUSED(context); UNUSED(context);
UNUSED(cmsg); UNUSED(cmsg);
@ -194,7 +194,7 @@ void plugin_persist__handle_msg_add(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
void plugin_persist__handle_msg_remove(struct mosquitto_msg_store *msg) void plugin_persist__handle_msg_delete(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
@ -202,7 +202,12 @@ void plugin_persist__handle_retain_add(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
void plugin_persist__handle_retain_remove(struct mosquitto_msg_store *msg) void plugin_persist__handle_retain_delete(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
void plugin_persist__handle_subscription_delete(struct mosquitto *context, const char *sub)
{
UNUSED(context);
UNUSED(sub);
}

@ -195,7 +195,7 @@ void plugin_persist__handle_client_msg_add(struct mosquitto *context, const stru
UNUSED(context); UNUSED(context);
UNUSED(cmsg); UNUSED(cmsg);
} }
void plugin_persist__handle_client_msg_remove(struct mosquitto *context, const struct mosquitto_client_msg *cmsg) void plugin_persist__handle_client_msg_delete(struct mosquitto *context, const struct mosquitto_client_msg *cmsg)
{ {
UNUSED(context); UNUSED(context);
UNUSED(cmsg); UNUSED(cmsg);
@ -214,7 +214,7 @@ void plugin_persist__handle_msg_add(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
void plugin_persist__handle_msg_remove(struct mosquitto_msg_store *msg) void plugin_persist__handle_msg_delete(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
@ -222,7 +222,12 @@ void plugin_persist__handle_retain_add(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
void plugin_persist__handle_retain_remove(struct mosquitto_msg_store *msg) void plugin_persist__handle_retain_delete(struct mosquitto_msg_store *msg)
{ {
UNUSED(msg); UNUSED(msg);
} }
void plugin_persist__handle_subscription_delete(struct mosquitto *context, const char *sub)
{
UNUSED(context);
UNUSED(sub);
}

Loading…
Cancel
Save