From 00cb6b0042971023e4c0180ae7aa29a7831f13d3 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Sun, 20 May 2018 13:53:10 +0000 Subject: [PATCH] Fix: Do not report passwords at all --- src/auth_static.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/auth_static.c b/src/auth_static.c index 97f62ac4..66528bfe 100644 --- a/src/auth_static.c +++ b/src/auth_static.c @@ -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; }