summaryrefslogtreecommitdiff
path: root/src/modules/extra
diff options
context:
space:
mode:
authorspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2009-02-23 13:30:38 +0000
committerspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2009-02-23 13:30:38 +0000
commitecc55199cf2bad355d6c902fac7076d002c3199e (patch)
treeb84fd98cf9947ed9da76988a5df5c5c44366c3da /src/modules/extra
parent410e7b9e2f3c29c0347d54bde9e37384c1784386 (diff)
m_uninvite and m_ssl_oper_cert should be marked as VF_COMMON and returning CMD_LOCALONLY respectively
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11144 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra')
-rw-r--r--src/modules/extra/m_ssl_oper_cert.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_ssl_oper_cert.cpp b/src/modules/extra/m_ssl_oper_cert.cpp
index 46bd4b5d5..9e6933826 100644
--- a/src/modules/extra/m_ssl_oper_cert.cpp
+++ b/src/modules/extra/m_ssl_oper_cert.cpp
@@ -39,7 +39,7 @@ class CommandFingerprint : public Command
if (cert->GetFingerprint().length())
{
user->WriteServ("NOTICE %s :Certificate fingerprint for %s is %s",user->nick.c_str(),target->nick.c_str(),cert->GetFingerprint().c_str());
- return CMD_SUCCESS;
+ return CMD_LOCALONLY;
}
else
{