Skip to content
Snippets Groups Projects
Commit 5396ce22 authored by Janik Kleinhoff's avatar Janik Kleinhoff Committed by William Pitcock
Browse files

chanserv/taxonomy: Metadata isn't covered by PUBACL

This is consistent with chanserv/info: metadata is public by default
unless the PRIVATE flag is set.
parent 0be4e742
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ void cs_cmd_taxonomy(sourceinfo_t *si, int parc, char *parv[])
isoper = has_priv(si, PRIV_CHAN_AUSPEX);
if (use_channel_private && mc->flags & MC_PRIVATE && !(mc->flags & MC_PUBACL) &&
if (use_channel_private && mc->flags & MC_PRIVATE &&
!chanacs_source_has_flag(mc, si, CA_ACLVIEW) && !isoper)
{
command_fail(si, fault_noprivs, _("Channel \2%s\2 is private."),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment