From 880c94adb426a7e85ad2826c9562c05c5714d0e9 Mon Sep 17 00:00:00 2001
From: William Pitcock <nenolod@atheme.org>
Date: Sun, 17 Aug 2008 08:40:10 -0500
Subject: [PATCH] /stats o: display name of privset instead of privs

---
 modules/m_stats.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/m_stats.c b/modules/m_stats.c
index b5738a74..653a0e1c 100644
--- a/modules/m_stats.c
+++ b/modules/m_stats.c
@@ -674,7 +674,7 @@ stats_oper(struct Client *source_p)
 		sendto_one_numeric(source_p, RPL_STATSOLINE, 
 				form_str(RPL_STATSOLINE),
 				oper_p->username, oper_p->host, oper_p->name,
-				IsOper(source_p) ? get_oper_privs(oper_p->flags) : "0", "-1");
+				IsOper(source_p) ? oper_p->privset->name : "0", "-1");
 	}
 }