From b11b48ec07214686bb351e9ec4857a107c26665b Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Thu, 16 Jan 2014 19:33:02 -0500 Subject: Deindent HTTPFetchRequest::HTTPFetchRequest() --- src/httpfetch.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/httpfetch.cpp b/src/httpfetch.cpp index bc029ed7a..599507562 100644 --- a/src/httpfetch.cpp +++ b/src/httpfetch.cpp @@ -42,24 +42,24 @@ with this program; if not, write to the Free Software Foundation, Inc., JMutex g_httpfetch_mutex; std::map > g_httpfetch_results; - HTTPFetchRequest::HTTPFetchRequest() - { - url = ""; - caller = HTTPFETCH_DISCARD; - request_id = 0; - timeout = g_settings->getS32("curl_timeout"); - connect_timeout = timeout * 5; - - useragent = std::string("Minetest/") + minetest_version_hash + " "; +HTTPFetchRequest::HTTPFetchRequest() +{ + url = ""; + caller = HTTPFETCH_DISCARD; + request_id = 0; + timeout = g_settings->getS32("curl_timeout"); + connect_timeout = timeout * 5; + + useragent = std::string("Minetest/") + minetest_version_hash + " "; #ifdef _WIN32 - useragent += "(Windows)"; + useragent += "(Windows)"; #else - struct utsname osinfo; - uname(&osinfo); - useragent += std::string("(") + osinfo.sysname + "/" - + osinfo.release + " " + osinfo.machine + ")"; + struct utsname osinfo; + uname(&osinfo); + useragent += std::string("(") + osinfo.sysname + "/" + + osinfo.release + " " + osinfo.machine + ")"; #endif - } +} static void httpfetch_deliver_result(const HTTPFetchResult &fetchresult) -- cgit v1.2.3