From da75b0f7af646e4bd6a7cf3747c6a1402fc1967d Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 25 Jul 2011 17:14:02 -0400 Subject: [PATCH] byte order from arch only needs to be set when not using packet metadata Signed-off-by: Mathieu Desnoyers --- formats/ctf/ctf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index 40430558..d685b6cd 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -607,11 +607,12 @@ int ctf_open_trace_metadata_read(struct ctf_trace *td) goto end_stream; } - td->byte_order = BYTE_ORDER; if (packet_metadata(td, fp)) { ret = ctf_open_trace_metadata_stream_read(td, &fp, &buf); if (ret) goto end_packet_read; + } else { + td->byte_order = BYTE_ORDER; } scanner = ctf_scanner_alloc(fp); -- 2.34.1