From e2a8489750040193c9897eb9c8098dcfcde450b0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Voc=C5=AF?= Date: Wed, 7 Jun 2006 20:06:53 +0000 Subject: [PATCH] * insert correct port into jobid --- org.glite.lb.common/src/lb_perftest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.glite.lb.common/src/lb_perftest.c b/org.glite.lb.common/src/lb_perftest.c index da1f84e..8548964 100644 --- a/org.glite.lb.common/src/lb_perftest.c +++ b/org.glite.lb.common/src/lb_perftest.c @@ -204,9 +204,9 @@ glite_wll_perftest_init(const char *host, dest_host = strdup(host); if(p) { *p++ = ':'; - dest_port = atoi(p)+1; + dest_port = atoi(p); } else - dest_port = GLITE_WMSC_JOBID_DEFAULT_PORT+1; + dest_port = GLITE_WMSC_JOBID_DEFAULT_PORT; } /* reset event source */ -- 1.8.2.3