1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

Fix: Corrected key name

This commit is contained in:
Philipp Schafft 2022-09-17 16:58:34 +00:00
parent 57ba8c2297
commit 5015b2f200

View File

@ -78,7 +78,7 @@ const char * event_extra_key_name(event_extra_key_t key)
{
switch (key) {
case EVENT_EXTRA_KEY_URI: return "uri"; break;
case EVENT_EXTRA_KEY_CONNECTION_IP: return "connection-id"; break;
case EVENT_EXTRA_KEY_CONNECTION_IP: return "connection-ip"; break;
case EVENT_EXTRA_KEY_CLIENT_ROLE: return "client-role"; break;
case EVENT_EXTRA_KEY_CLIENT_USERNAME: return "client-username"; break;
case EVENT_EXTRA_KEY_CLIENT_USERAGENT: return "client-useragent"; break;