From c3bc33b3fbd8e1a6df511d3175557c2842200c56 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Wed, 27 Jul 2011 00:45:30 +0000 Subject: [PATCH] Don't be so restrictive - accept "slots" as well as "slot" in rank file This commit was SVN r24954. --- orte/mca/rmaps/rank_file/rmaps_rank_file_lex.l | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orte/mca/rmaps/rank_file/rmaps_rank_file_lex.l b/orte/mca/rmaps/rank_file/rmaps_rank_file_lex.l index 0cee025fe6..4eb3844197 100644 --- a/orte/mca/rmaps/rank_file/rmaps_rank_file_lex.l +++ b/orte/mca/rmaps/rank_file/rmaps_rank_file_lex.l @@ -80,6 +80,8 @@ rank { orte_rmaps_rank_file_value.sval = yytext; return ORTE_RANKFILE_RANK; } slot { orte_rmaps_rank_file_value.sval = yytext; return ORTE_RANKFILE_SLOT; } +slots { orte_rmaps_rank_file_value.sval = yytext; + return ORTE_RANKFILE_SLOT; } username { orte_rmaps_rank_file_value.sval = yytext; return ORTE_RANKFILE_USERNAME; }