From: Adam Dickmeiss Date: Wed, 14 Nov 2012 11:35:20 +0000 (+0100) Subject: zoom: only append http:// for SRU if not already given X-Git-Tag: v1.3.51~2 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=a7ceaa4af871063a421015549c6d3a99504f9458;hp=691b79dad340d6ad6945e7f421b9be6243b948fc;p=metaproxy-moved-to-github.git zoom: only append for SRU if not already given --- diff --git a/src/filter_zoom.cpp b/src/filter_zoom.cpp index 39021d1..0905765 100644 --- a/src/filter_zoom.cpp +++ b/src/filter_zoom.cpp @@ -1420,19 +1420,16 @@ yf::Zoom::BackendPtr yf::Zoom::Frontend::get_backend_from_databases( if (proxy.length()) b->set_option("proxy", proxy); } - std::string url; + std::string url(sptr->target); if (sptr->sru.length()) { - url = "http://" + sptr->target; + yaz_log(YLOG_LOG, "Got URL %s", url.c_str()); b->set_option("sru", sptr->sru); - + if (url.find_first_of("://") == std::string::npos) + url = "http://" + url; if (sptr->sru_version.length()) b->set_option("sru_version", sptr->sru_version); } - else - { - url = sptr->target; - } if (no_out_args) { char *x_args = 0;