diff -ruN boxee-0.9.11.5777-src.old/xbmc/FileSystem/FileCurl.cpp boxee-0.9.11.5777-src/xbmc/FileSystem/FileCurl.cpp --- boxee-0.9.11.5777-src.old/xbmc/FileSystem/FileCurl.cpp 2009-03-03 17:19:03.000000000 -0700 +++ boxee-0.9.11.5777-src/xbmc/FileSystem/FileCurl.cpp 2009-05-19 21:37:12.000000000 -0600 @@ -404,7 +404,7 @@ if( m_ftpport.length() > 0 ) g_curlInterface.easy_setopt(h, CURLOPT_FTPPORT, m_ftpport.c_str()); else - g_curlInterface.easy_setopt(h, CURLOPT_FTPPORT, NULL); + g_curlInterface.easy_setopt(h, CURLOPT_FTPPORT, (const char*)NULL); // allow curl to not use the ip address in the returned pasv response if( m_ftppasvip ) @@ -804,7 +804,7 @@ g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOBODY, 0); g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEFUNCTION, (void*)dummy_callback); g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FOLLOWLOCATION, 1); - g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/ + g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, (const char*)NULL); /* will cause write failure*/ char err[4096]; memset(err,0,4096); Files boxee-0.9.11.5777-src.old/xbmc/FileSystem/.FileCurl.cpp.swp and boxee-0.9.11.5777-src/xbmc/FileSystem/.FileCurl.cpp.swp differ