From 8195969f51aeb023710b6dd7ae39daaf7d625313 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 16 Oct 2003 10:18:56 +0000 Subject: [PATCH] Fix warning --- comstack/comstack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comstack/comstack.c b/comstack/comstack.c index 583817a..a429f87 100644 --- a/comstack/comstack.c +++ b/comstack/comstack.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: comstack.c,v 1.14 2003-04-24 13:04:45 adam Exp $ + * $Id: comstack.c,v 1.15 2003-10-16 10:18:56 adam Exp $ */ #include @@ -99,10 +99,10 @@ COMSTACK cs_create_host(const char *type_and_host, int blocking, void **vp) host = type_and_host + 6; if (host[0] == '/' && host[1] == '/') host = host + 2; + proto = PROTO_HTTP; #else return 0; #endif - proto = PROTO_HTTP; } else { -- 1.7.10.4