From: Adam Dickmeiss Date: Wed, 4 Jul 2007 09:21:00 +0000 (+0000) Subject: Revert X-Git-Tag: YAZ.3.0.10~28 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=b0af12e407d33fc35d41152e67c568f762e3b41f;hp=39975667295ec760cc15b863f64e8d5fd74ac209 Revert --- diff --git a/client/client.c b/client/client.c index 261ff70..f258f76 100644 --- a/client/client.c +++ b/client/client.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: client.c,v 1.346 2007-07-04 09:20:06 adam Exp $ + * $Id: client.c,v 1.347 2007-07-04 09:21:00 adam Exp $ */ /** \file client.c * \brief yaz-client program @@ -56,7 +56,6 @@ #include -#include #include #define NO_OID 1 #include @@ -718,21 +717,11 @@ int session_connect(const char *arg) conn = cs_create_host(yazProxy, 1, &add); else conn = cs_create_host(arg, 1, &add); - if (!conn) { printf ("Could not resolve address %s\n", arg); return 0; } - if (1) - { - COMSTACK tmp_cs = cs_create (tcpip_type, 0, PROTO_Z3950); - - void *addr = cs_straddr(tmp_cs, arg); - printf ("cs_straddr of %s %s\n", arg, addr ? "OK" : "Failed"); - - cs_close(tmp_cs); - } #if YAZ_HAVE_XML2 if (conn->protocol == PROTO_HTTP) queryType = QueryType_CQL;