summaryrefslogtreecommitdiff
path: root/export_xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'export_xml.c')
-rw-r--r--export_xml.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/export_xml.c b/export_xml.c
index db1d592..f7509c3 100644
--- a/export_xml.c
+++ b/export_xml.c
@@ -49,6 +49,10 @@ int export_xml(struct channel_t *channel, struct user_t *users) {
xmlNewChild(user_node, NULL, "words", s);
snprintf(s, 0xf, "%d", user->characters);
xmlNewChild(user_node, NULL, "characters", s);
+ snprintf(s, 0xf, "%d", user->kicks);
+ xmlNewChild(user_node, NULL, "kicks", s);
+ snprintf(s, 0xf, "%d", user->kicked);
+ xmlNewChild(user_node, NULL, "kicked", s);
/* Add lines for this user. */
xmlNodePtr lines_node = xmlNewChild(user_node, NULL, "lines", NULL);