From 906e5381a7b745cbb6c06cda503acc5066d1626e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Voc=C5=AF?= Date: Wed, 8 Aug 2012 10:21:03 +0000 Subject: [PATCH] fix PBS seqcode updating broken after CREAM merge --- org.glite.lb.common/src/context.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/org.glite.lb.common/src/context.c b/org.glite.lb.common/src/context.c index 47aaa51..6402f93 100644 --- a/org.glite.lb.common/src/context.c +++ b/org.glite.lb.common/src/context.c @@ -542,6 +542,8 @@ int edg_wll_IncSequenceCode(edg_wll_Context ctx) switch (ctx->p_seqcode.type) { case EDG_WLL_SEQ_CREAM: /* fall through */ + case EDG_WLL_SEQ_PBS: + /* fall through */ case EDG_WLL_SEQ_DUPLICATE: /* fall through */ case EDG_WLL_SEQ_NORMAL: @@ -554,9 +556,6 @@ int edg_wll_IncSequenceCode(edg_wll_Context ctx) ctx->p_seqcode.c[ctx->p_source]++; break; - case EDG_WLL_SEQ_PBS: - /* no action */ - break; default: break; } -- 1.8.2.3