*** empty log message ***

svn path=/trunk/boinc/; revision=3552
This commit is contained in:
Rom Walton 2004-06-13 01:43:41 +00:00
parent a491f722a7
commit 423331ba76
1 changed files with 1 additions and 2 deletions

View File

@ -40,7 +40,6 @@
#ifdef HAVE_SYS_FILE_H
#include <sys/file.h>
#endif
#include "config.h"
using namespace std;
#endif
@ -409,7 +408,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;