mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3552
This commit is contained in:
parent
a491f722a7
commit
423331ba76
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue