diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2015-06-29 23:14:45 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2015-06-29 23:14:45 -0400 |
commit | 45ddc6e91da8e48a21fac1d317e66524db304a17 (patch) | |
tree | 57d75118f5ea1e3bc1667787641dfd3849d23220 /indra | |
parent | 2701cfeb62dffeb4bc841ec76d6d4da760810fd3 (diff) |
MAINT-5200: Correct new LLCore::HttpHeaders::ptr_t usage.
The convention about how to construct an HttpHeaders::ptr_t has changed.
Change new code to adapt to merged changes.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llfacebookconnect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfacebookconnect.cpp b/indra/newview/llfacebookconnect.cpp index 59827c581c..87d7aacda1 100755 --- a/indra/newview/llfacebookconnect.cpp +++ b/indra/newview/llfacebookconnect.cpp @@ -70,7 +70,7 @@ void toast_user_for_facebook_success() LLCore::HttpHeaders::ptr_t get_headers() { - LLCore::HttpHeaders::ptr_t httpHeaders(new LLCore::HttpHeaders, false); + LLCore::HttpHeaders::ptr_t httpHeaders(new LLCore::HttpHeaders); // The DebugSlshareLogTag mechanism is intended to trigger slshare-service // debug logging. slshare-service is coded to respond to an X-debug-tag // header by engaging debug logging for that request only. This way a |