File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
22/*
3- * Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
3+ * Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
44 * Copyright (c) 2014-2016 Research Organization for Information Science
55 * and Technology (RIST). All rights reserved.
66 * Copyright (c) 2016 Cisco Systems, Inc. All rights reserved.
@@ -220,7 +220,7 @@ static int s1_init(opal_list_t *ilist)
220220 s1_pname .jobid = strtoul (pmix_id , & str , 10 );
221221 s1_pname .jobid = (s1_pname .jobid << 16 ) & 0xffff0000 ;
222222 if (NULL != str ) {
223- ui32 = strtoul (str , NULL , 10 );
223+ ui32 = strtoul (str + 1 , NULL , 10 );
224224 s1_pname .jobid |= (ui32 & 0x0000ffff );
225225 }
226226 ldr .jobid = s1_pname .jobid ;
Original file line number Diff line number Diff line change 55 * Copyright (c) 2011-2016 Cisco Systems, Inc. All rights reserved.
66 * Copyright (c) 2011-2013 Los Alamos National Security, LLC. All
77 * rights reserved.
8- * Copyright (c) 2013-2017 Intel, Inc. All rights reserved.
8+ * Copyright (c) 2013-2018 Intel, Inc. All rights reserved.
99 * Copyright (c) 2014-2016 Research Organization for Information Science
1010 * and Technology (RIST). All rights reserved.
1111 * $COPYRIGHT$
@@ -227,7 +227,7 @@ static int s2_init(opal_list_t *ilist)
227227 s2_pname .jobid = strtoul (pmix_kvs_name , & str , 10 );
228228 s2_pname .jobid = (s2_pname .jobid << 16 ) & 0xffff0000 ;
229229 if (NULL != str ) {
230- stepid = strtoul (str , NULL , 10 );
230+ stepid = strtoul (str + 1 , NULL , 10 );
231231 s2_pname .jobid |= (stepid & 0x0000ffff );
232232 }
233233 s2_pname .vpid = s2_rank ;
You can’t perform that action at this time.
0 commit comments