From 79aa866d87464ecd3fc451668017c0fa1adb2776 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 8 Dec 2005 15:36:31 +0000 Subject: [PATCH] Avoid mixed stmt/var declare --- src/zoom-c.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/zoom-c.c b/src/zoom-c.c index 1c67d1d..8b1b3d1 100644 --- a/src/zoom-c.c +++ b/src/zoom-c.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: zoom-c.c,v 1.53 2005-12-07 16:15:15 mike Exp $ + * $Id: zoom-c.c,v 1.54 2005-12-08 15:36:31 adam Exp $ */ /** * \file zoom-c.c @@ -394,9 +394,11 @@ ZOOM_connection_connect(ZOOM_connection c, * hard to get into the comstack code in a * protocol-independent way. */ + char *remainder, *pass; + *(char*)val = '\0'; - char *remainder = xstrdup(val+1); - char *pass = strchr(c->host_port, ':'); + remainder = xstrdup(val+1); + pass = strchr(c->host_port, ':'); if (pass != 0) { *pass++ = '\0'; ZOOM_connection_option_set(c, "user", c->host_port); @@ -1081,7 +1083,7 @@ static zoom_ret ZOOM_connection_send_init (ZOOM_connection c) ZOOM_options_get(c->options, "implementationName"), odr_prepend(c->odr_out, "ZOOM-C", ireq->implementationName)); - version = odr_strdup(c->odr_out, "$Revision: 1.53 $"); + version = odr_strdup(c->odr_out, "$Revision: 1.54 $"); if (strlen(version) > 10) /* check for unexpanded CVS strings */ version[strlen(version)-2] = '\0'; ireq->implementationVersion = odr_prepend(c->odr_out, -- 1.7.10.4