diff options
author | Kitty Barnett <develop@catznip.com> | 2024-09-30 15:50:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-30 15:50:37 +0200 |
commit | a8d8314cb9af193ea7ce95456fb308217ba28e3c (patch) | |
tree | 623dd4a5731b1b90eb7d595758f8cc639cc32ba3 /indra/newview/rlvhandler.cpp | |
parent | e03ad4913fd9dc12d9efcdd3854885a1622277ef (diff) | |
parent | dc64ac19fd74694a6e9ecf0cb68e3f83257c93b9 (diff) |
Merge pull request #1 from Nicky-D/rlva/linux
Fix Linux build errors
Diffstat (limited to 'indra/newview/rlvhandler.cpp')
-rw-r--r-- | indra/newview/rlvhandler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/rlvhandler.cpp b/indra/newview/rlvhandler.cpp index bf086c1b4b..6c4b439105 100644 --- a/indra/newview/rlvhandler.cpp +++ b/indra/newview/rlvhandler.cpp @@ -198,7 +198,7 @@ ECmdRet ReplyHandler<EBehaviour::GetCommand>::onCommand(const RlvCommand& rlvCmd std::list<std::string> cmdList; if (BehaviourDictionary::instance().getCommands(!optionList.empty() ? optionList[0] : LLStringUtil::null, eType, cmdList)) strReply = boost::algorithm::join(cmdList, optionList.size() >= 3 ? optionList[2] : Constants::OptionSeparator); - return ECmdRet::Success; + return ECmdRet::Succeeded; } // Handles: @version=<chnannel> and @versionnew=<channel> @@ -206,7 +206,7 @@ template<> template<> ECmdRet VersionReplyHandler::onCommand(const RlvCommand& rlvCmd, std::string& strReply) { strReply = Strings::getVersion(EBehaviour::Version == rlvCmd.getBehaviourType()); - return ECmdRet::Success; + return ECmdRet::Succeeded; } // Handles: @versionnum[:impl]=<channel> @@ -219,7 +219,7 @@ ECmdRet ReplyHandler<EBehaviour::VersionNum>::onCommand(const RlvCommand& rlvCmd strReply = Strings::getVersionImplNum(); else return ECmdRet::FailedOption; - return ECmdRet::Success; + return ECmdRet::Succeeded; } // ============================================================================ |