From b7ef094766c3b119166f69e88d782cb1d28cc7ee Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 5 Oct 2005 15:43:28 +0000 Subject: [PATCH] * the cid in the header is only 16 bits, so limit our max cid to what can fit in there. This commit was SVN r7639. --- ompi/mca/pml/ob1/pml_ob1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/pml/ob1/pml_ob1.c b/ompi/mca/pml/ob1/pml_ob1.c index f7c74cc96f..042eab2ee4 100644 --- a/ompi/mca/pml/ob1/pml_ob1.c +++ b/ompi/mca/pml/ob1/pml_ob1.c @@ -52,7 +52,7 @@ mca_pml_ob1_t mca_pml_ob1 = { mca_pml_ob1_probe, mca_pml_ob1_start, 32768, - (0x7fffffff) + (0xffff) } };