diff options
Diffstat (limited to 'plugins/check_game.c')
-rw-r--r-- | plugins/check_game.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_game.c b/plugins/check_game.c index 5496c4dc..89bb4b12 100644 --- a/plugins/check_game.c +++ b/plugins/check_game.c | |||
@@ -84,11 +84,11 @@ main (int argc, char **argv) | |||
84 | result = STATE_OK; | 84 | result = STATE_OK; |
85 | 85 | ||
86 | /* create the command line to execute */ | 86 | /* create the command line to execute */ |
87 | asprintf (&command_line, "%s -raw %s -%s %s", | 87 | xasprintf (&command_line, "%s -raw %s -%s %s", |
88 | PATH_TO_QSTAT, QSTAT_DATA_DELIMITER, game_type, server_ip); | 88 | PATH_TO_QSTAT, QSTAT_DATA_DELIMITER, game_type, server_ip); |
89 | 89 | ||
90 | if (port) | 90 | if (port) |
91 | asprintf (&command_line, "%s:%-d", command_line, port); | 91 | xasprintf (&command_line, "%s:%-d", command_line, port); |
92 | 92 | ||
93 | if (verbose > 0) | 93 | if (verbose > 0) |
94 | printf ("%s\n", command_line); | 94 | printf ("%s\n", command_line); |