From: Zdeněk Salvet Date: Fri, 17 Feb 2006 10:14:45 +0000 (+0000) Subject: Update description of EDG_WLL_IL_PROTO. X-Git-Tag: glite-lb-common_R_3_0_4~4 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=bc86ed9356802db7c72a3c90431477c5d5648a6e;p=jra1mw.git Update description of EDG_WLL_IL_PROTO. Fix incorrect cast in ctx->connProxy allocation. --- diff --git a/org.glite.lb.common/src/context.c b/org.glite.lb.common/src/context.c index c4a46d4..561e068 100644 --- a/org.glite.lb.common/src/context.c +++ b/org.glite.lb.common/src/context.c @@ -36,7 +36,7 @@ int edg_wll_InitContext(edg_wll_Context *ctx) out->connPool = (edg_wll_ConnPool *) calloc(out->poolSize, sizeof(edg_wll_ConnPool)); out->connPoolNotif = (edg_wll_ConnPool *) calloc(1, sizeof(edg_wll_ConnPool)); - out->connProxy = (edg_wll_ConnPool *) calloc(1, sizeof(edg_wll_ConnProxy)); + out->connProxy = (edg_wll_ConnProxy *) calloc(1, sizeof(edg_wll_ConnProxy)); out->connProxy->conn.sock = -1; out->connToUse = -1; @@ -128,7 +128,7 @@ static const char* const errTexts[] = { "DNS resolver error", "No JobId specified in context", "No indexed condition in query", - "Interlogger protocol error", + "Lbserver (proxy) store protocol error", "Interlogger internal error", "Interlogger has events pending", "Compared events differ",