mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9951
This commit is contained in:
parent
926900cedb
commit
825f710b35
|
@ -3975,3 +3975,10 @@ Rom 17 Apr 2006
|
||||||
|
|
||||||
clientgui/
|
clientgui/
|
||||||
ViewWork.cpp
|
ViewWork.cpp
|
||||||
|
|
||||||
|
Walt 17 Apr 2006
|
||||||
|
- Bug Fix: Fix a problem where it was passing the xml tag line
|
||||||
|
instead of the string to xml_unescape.
|
||||||
|
|
||||||
|
lib/
|
||||||
|
proxy_info.C
|
||||||
|
|
|
@ -52,7 +52,7 @@ int PROXY_INFO::parse(MIOFILE& in) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (parse_str(buf, "<socks5_user_passwd>", buf2, 1024)) {
|
else if (parse_str(buf, "<socks5_user_passwd>", buf2, 1024)) {
|
||||||
xml_unescape(buf, socks5_user_passwd);
|
xml_unescape(buf2, socks5_user_passwd);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (parse_str(buf, "<http_user_name>", buf2, 1024)) {
|
else if (parse_str(buf, "<http_user_name>", buf2, 1024)) {
|
||||||
|
@ -60,7 +60,7 @@ int PROXY_INFO::parse(MIOFILE& in) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (parse_str(buf, "<http_user_passwd>", buf2, 1024)) {
|
else if (parse_str(buf, "<http_user_passwd>", buf2, 1024)) {
|
||||||
xml_unescape(buf, http_user_passwd);
|
xml_unescape(buf2, http_user_passwd);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue