*** empty log message ***

svn path=/trunk/boinc/; revision=9951
This commit is contained in:
Walt Gribben 2006-04-18 05:54:36 +00:00
parent 926900cedb
commit 825f710b35
2 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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;
} }
} }