1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

Fix: Do not report passwords at all

This commit is contained in:
Philipp Schafft 2018-05-20 13:53:10 +00:00
parent 465aac14f3
commit 00cb6b0042

View File

@ -68,7 +68,6 @@ static auth_result static_userlist(auth_t *auth, xmlNodePtr srcnode)
newnode = xmlNewChild(srcnode, NULL, XMLSTR("user"), NULL);
xmlNewTextChild(newnode, NULL, XMLSTR("username"), XMLSTR(auth_info->username));
xmlNewTextChild(newnode, NULL, XMLSTR("password"), XMLSTR(auth_info->password));
return AUTH_OK;
}