From 2df81c35805b75dab0b2815cdc210213c461d285 Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Mon, 18 Oct 2010 20:43:10 +0200 Subject: [PATCH] Build fixes --- indra/llmessage/llcurl.cpp | 4 ++-- indra/llmessage/llcurl.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index 05240e3ff..207a5ee67 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -122,7 +122,7 @@ LLCurl::Responder::~Responder() } // virtual -void LLCurl::Responder::error( +void LLCurl::Responder::errorWithContent( U32 status, const std::string& reason, const LLSD&) @@ -163,7 +163,7 @@ void LLCurl::Responder::completed(U32 status, const std::string& reason, const L } else { - error(status, reason, content); + errorWithContent(status, reason, content); } } diff --git a/indra/llmessage/llcurl.h b/indra/llmessage/llcurl.h index 3e9c0d430..32637b200 100644 --- a/indra/llmessage/llcurl.h +++ b/indra/llmessage/llcurl.h @@ -85,7 +85,7 @@ public: return((200 <= status) && (status < 300)); } - virtual void error( + virtual void errorWithContent( U32 status, const std::string& reason, const LLSD& content);