diff options
| author | 2009-02-23 13:30:38 +0000 | |
|---|---|---|
| committer | 2009-02-23 13:30:38 +0000 | |
| commit | ecc55199cf2bad355d6c902fac7076d002c3199e (patch) | |
| tree | b84fd98cf9947ed9da76988a5df5c5c44366c3da /src/modules/extra | |
| parent | Forward port r11142: Commands that only give a response locally should not be... (diff) | |
| download | inspircd++-ecc55199cf2bad355d6c902fac7076d002c3199e.tar.gz inspircd++-ecc55199cf2bad355d6c902fac7076d002c3199e.tar.bz2 inspircd++-ecc55199cf2bad355d6c902fac7076d002c3199e.zip | |
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.cpp | 2 |
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 { |
