Don't append a colon and two spaces to title in --json output.

Resolves Issue 139.
This commit is contained in:
Bruce A. Mah 2014-02-21 13:24:38 -08:00
parent f2c4e2b5bd
commit a3736b64e7

View File

@ -772,8 +772,7 @@ iperf_parse_arguments(struct iperf_test *test, int argc, char **argv)
#endif
break;
case 'T':
test->title = malloc(strlen(optarg) + 4);
sprintf(test->title, "%s: ", optarg);
test->title = strdup(optarg);
client_flag = 1;
break;
case 'C':
@ -2609,7 +2608,7 @@ iprintf(struct iperf_test *test, const char* format, ...)
int r;
if (test->title)
fputs(test->title, stdout);
printf("%s: ", test->title);
va_start(argp, format);
r = vprintf(format, argp);
va_end(argp);