X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Fclient.c;h=0a366514656faf3eb1d51e8fb06abe0f29e2b073;hb=94140e7ec2de8ecd8c6f3715121b0502f469c003;hp=71dc720c2086b3c67a20137a6fae8306cfc132f4;hpb=1a4d6b95fab9bceec919854df8efe8363df55997;p=yaz-moved-to-github.git diff --git a/client/client.c b/client/client.c index 71dc720..0a36651 100644 --- a/client/client.c +++ b/client/client.c @@ -702,10 +702,7 @@ static int session_connect_base(const char *arg, const char **basep) strncpy(type_and_host, arg, sizeof(type_and_host)-1); type_and_host[sizeof(type_and_host)-1] = '\0'; - if (yazProxy) - conn = cs_create_host(yazProxy, 1, &add); - else - conn = cs_create_host(arg, 1, &add); + conn = cs_create_host_proxy(arg, 1, &add, yazProxy); if (!conn) { printf("Could not resolve address %s\n", arg); @@ -4445,10 +4442,10 @@ static void http_response(Z_HTTP_Response *hres) if (ret == 0 && sr->which == Z_SRW_searchRetrieve_response) handle_srw_response(sr->u.response); else if (ret == 0 && sr->which == Z_SRW_scan_response) - handle_srw_scan_response(sr->u.scan_response); + handle_srw_scan_response(sr->u.scan_response); else { - printf("Decoding of SOLR package failed\n"); + printf("Decoding of Solr package failed\n"); ret = -1; } odr_destroy(o);