X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fcomstack.c;h=0623457a0ccad91dbadc065384f71aa026a62e2c;hb=9a4813613f9dcc5a03776064ce6dd41a71606b74;hp=896127b1c6e58abc4168c54744447c8d1fcd2709;hpb=377e50914cd78d52e77032a3eaf8972f23b4e7b9;p=yaz-moved-to-github.git diff --git a/src/comstack.c b/src/comstack.c index 896127b..0623457 100644 --- a/src/comstack.c +++ b/src/comstack.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: comstack.c,v 1.21 2007-10-09 06:00:56 adam Exp $ */ /** @@ -85,7 +83,7 @@ static int cs_parse_host(const char *uri, const char **host, if (cp) { size_t len = cp - (uri + 8); - *connect_host = xmalloc(len+1); + *connect_host = (char *) xmalloc(len+1); memcpy(*connect_host, uri + 8, len); (*connect_host)[len] = '\0'; uri = cp+1;