From 83ee20fc2910e9ea0cac250e767d20f17576d98a Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 25 Apr 2012 19:02:09 -0400 Subject: Clarify access denied messages caused by NSSecureAdmins --- modules/commands/ns_getpass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/ns_getpass.cpp') diff --git a/modules/commands/ns_getpass.cpp b/modules/commands/ns_getpass.cpp index f8c044119..e5cf4a7ac 100644 --- a/modules/commands/ns_getpass.cpp +++ b/modules/commands/ns_getpass.cpp @@ -32,7 +32,7 @@ class CommandNSGetPass : public Command if (!(na = findnick(nick))) source.Reply(NICK_X_NOT_REGISTERED, nick.c_str()); else if (Config->NSSecureAdmins && na->nc->IsServicesOper()) - source.Reply(ACCESS_DENIED); + source.Reply(_("You may not get the password of other services operators.")); else { if (enc_decrypt(na->nc->pass, tmp_pass) == 1) -- cgit