diff options
Diffstat (limited to 'indra/llcorehttp/_httpservice.h')
| -rw-r--r-- | indra/llcorehttp/_httpservice.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/indra/llcorehttp/_httpservice.h b/indra/llcorehttp/_httpservice.h index 095316c8a7..748354a8e4 100644 --- a/indra/llcorehttp/_httpservice.h +++ b/indra/llcorehttp/_httpservice.h @@ -148,14 +148,14 @@ public:  	/// Threading:  callable by worker thread.  	bool changePriority(HttpHandle handle, HttpRequest::priority_t priority); -	HttpPolicy * getPolicy() +	HttpPolicy & getPolicy()  		{ -			return mPolicy; +			return *mPolicy;  		} -	HttpLibcurl * getTransport() +	HttpLibcurl & getTransport()  		{ -			return mTransport; +			return *mTransport;  		}  protected: | 
