Skip to content

Commit

Permalink
Merge pull request ClusterLabs#671 from johnruemker/host_list_semicolon
Browse files Browse the repository at this point in the history
fencing: Allow semi-colon delimiter for pcmk_host_list
  • Loading branch information
beekhof committed Mar 30, 2015
2 parents 3e93bc1 + 82ebe88 commit 9459ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fencing/commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ parse_host_line(const char *line, int max, GListPtr * output)
if (a_space && lpc < max && isspace(line[lpc + 1])) {
/* fast-forward to the end of the spaces */

} else if (a_space || line[lpc] == ',' || line[lpc] == 0) {
} else if (a_space || line[lpc] == ',' || line[lpc] == ';' || line[lpc] == 0) {
int rc = 1;
char *entry = NULL;

Expand Down

0 comments on commit 9459ac7

Please sign in to comment.