X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Fctf.c;h=c3249a01775b9280d99936f7a6970a543fdcff24;hp=01035f3d0be119d1d24798481b3b71a883ca8a73;hb=caf929fa6105f9dbea79e3c05f9a9cbc7944028a;hpb=ca334c7230d120ffe211efbfd6efe467b5d4d794 diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index 01035f3d..c3249a01 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -426,9 +426,9 @@ void ctf_print_discarded(FILE *fp, struct ctf_stream_definition *stream, } fprintf(fp, "] in trace UUID "); print_uuid(fp, stream->stream_class->trace->uuid); - if (stream->stream_class->trace->path[0]) + if (stream->stream_class->trace->parent.path[0]) fprintf(fp, ", at path: \"%s\"", - stream->stream_class->trace->path); + stream->stream_class->trace->parent.path); fprintf(fp, ", within stream id %" PRIu64, stream->stream_id); if (stream->path[0]) @@ -1711,8 +1711,8 @@ int ctf_open_trace_read(struct ctf_trace *td, ret = -errno; goto error_dirfd; } - strncpy(td->path, path, sizeof(td->path)); - td->path[sizeof(td->path) - 1] = '\0'; + strncpy(td->parent.path, path, sizeof(td->parent.path)); + td->parent.path[sizeof(td->parent.path) - 1] = '\0'; /* * Keep the metadata file separate.