From 586f2b08d810c40686d631beb4d4898fde646a0b Mon Sep 17 00:00:00 2001 From: Dave Korn Date: Wed, 25 Jun 2008 00:54:20 +0000 Subject: [PATCH] * net.cc: Correct stray CRLF. --- ChangeLog | 4 ++++ net.cc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 033d3408..536e31cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-06-25 Dave Korn + + * net.cc: Correct stray CRLF. + 2008-06-25 Dave Korn * configure.in (ac_cv_path_GPG_ERROR_CONFIG): Remove nasty hack. diff --git a/net.cc b/net.cc index b1e58b93..35fd93c1 100644 --- a/net.cc +++ b/net.cc @@ -124,7 +124,7 @@ NetPage::OnInit () unsigned int pos = proxyString.find_last_of (':'); if ((pos > 0) && (pos < (proxyString.size () - 1))) { - NetIO::net_method = IDC_NET_PROXY; + NetIO::net_method = IDC_NET_PROXY; NetIO::net_proxy_host = strdup (proxyString.substr (0, pos).c_str ()); std::string portString = proxyString.substr (pos + 1, proxyString.size () - (pos + 1)); std::istringstream iss (portString, std::istringstream::in); -- 2.43.5