From: pk910 Date: Tue, 16 Aug 2011 21:14:25 +0000 (+0200) Subject: don't hide protected channels from Network Helpers in cmd_myaccess X-Git-Url: http://git.pk910.de/?p=srvx.git;a=commitdiff_plain;h=cac5d7cf813ec11676a75901df02ae41385dcdf5 don't hide protected channels from Network Helpers in cmd_myaccess --- diff --git a/src/chanserv.c b/src/chanserv.c index 62d896c..ba74d70 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -3855,7 +3855,8 @@ static CHANSERV_FUNC(cmd_myaccess) if(IsProtected(cData) && (target_handle != user->handle_info) - && !GetTrueChannelAccess(cData, user->handle_info)) + && !GetTrueChannelAccess(cData, user->handle_info) + && !IsNetworkHelper(user)) continue; sbuf.used = 0; string_buffer_append_printf(&sbuf, "[%s (%d", cData->channel->name, uData->access);