*** empty log message ***

svn path=/trunk/boinc/; revision=3040
This commit is contained in:
Rom Walton 2004-03-08 04:01:31 +00:00
parent f3cdbc0d35
commit 9614f2f2b1
1 changed files with 2 additions and 1 deletions

View File

@ -38,6 +38,7 @@
#include <algorithm>
#include <fstream>
using namespace std;
using std::string;
#endif
#include "error_numbers.h"
@ -392,7 +393,7 @@ void canonicalize_master_url(string& url) {
string::size_type p = url.find("://");
// lowercase http://
if (p != string::npos) {
std::transform(url.begin(), url.begin()+p, url.begin(), tolower);
transform(url.begin(), url.begin()+p, url.begin(), tolower);
p += 3;
} else {
p = 0;