diff --git a/campcaster/src/modules/core/src/FileTools.cxx b/campcaster/src/modules/core/src/FileTools.cxx index 8f428c705..620e87566 100644 --- a/campcaster/src/modules/core/src/FileTools.cxx +++ b/campcaster/src/modules/core/src/FileTools.cxx @@ -93,7 +93,7 @@ FileTools :: copyUrlToFile(const std::string & url, int status = curl_easy_setopt(handle, CURLOPT_URL, url.c_str()); status |= curl_easy_setopt(handle, CURLOPT_WRITEDATA, file); - status |= curl_easy_setopt(handle, CURLOPT_HTTPGET); + status |= curl_easy_setopt(handle, CURLOPT_HTTPGET, 1); if (status) { fclose(file); diff --git a/campcaster/src/modules/core/src/LocalizedObject.cxx b/campcaster/src/modules/core/src/LocalizedObject.cxx index 4c55721fc..45bcebf0f 100644 --- a/campcaster/src/modules/core/src/LocalizedObject.cxx +++ b/campcaster/src/modules/core/src/LocalizedObject.cxx @@ -34,7 +34,7 @@ #endif #include - +#include #include "LiveSupport/Core/LocalizedObject.h" @@ -322,7 +322,7 @@ LocalizedObject :: getBinaryResourceAsUstring(const char * key) "binary resource"); } char * strBuf = new char[length + 1]; - std::memcpy(strBuf, data, length); + memcpy(strBuf, data, length); strBuf[length] = 0; Ptr::Ref string(new Glib::ustring(strBuf)); if (string->validate()) { diff --git a/campcaster/src/modules/core/src/Uuid.cxx b/campcaster/src/modules/core/src/Uuid.cxx index 18cda1a50..74c281aa1 100644 --- a/campcaster/src/modules/core/src/Uuid.cxx +++ b/campcaster/src/modules/core/src/Uuid.cxx @@ -49,7 +49,7 @@ #include #include #include - +#include #include "LiveSupport/Core/Uuid.h" diff --git a/campcaster/src/modules/htmlUI/var/templates/menu.tpl b/campcaster/src/modules/htmlUI/var/templates/menu.tpl index c049ca59d..d49b2254a 100644 --- a/campcaster/src/modules/htmlUI/var/templates/menu.tpl +++ b/campcaster/src/modules/htmlUI/var/templates/menu.tpl @@ -21,7 +21,7 @@ if (window.attachEvent) window.attachEvent("onload", sfHover);