Fix deprecation warning.

get_hostlist_packet_func() was not deprecated in favor of itself, it was
deprecated in favor of get_endpoint_packet_func().
This commit is contained in:
Guy Harris 2022-08-23 11:43:02 -07:00 committed by A Wireshark GitLab Utility
parent 13a302da6e
commit ec6fd00518
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ WS_DLL_PUBLIC tap_packet_cb get_conversation_packet_func(register_ct_t* ct);
WS_DLL_PUBLIC tap_packet_cb get_endpoint_packet_func(register_ct_t* ct);
/* For backwards source and binary compatibility */
G_DEPRECATED_FOR(get_hostlist_packet_func)
G_DEPRECATED_FOR(get_endpoint_packet_func)
WS_DLL_PUBLIC tap_packet_cb get_hostlist_packet_func(register_ct_t* ct);