Fix: packet_seek is local to plugins, but can be overridden
[babeltrace.git] / lib / context.c
index f4c234aa6f955960edccb0f0550928c254b22d74..715273a957ea3ff0ea38cd5fba39a099161e80b2 100644 (file)
@@ -31,9 +31,6 @@
 #include <fts.h>
 #include <fcntl.h> /* For O_RDONLY */
 
-/* TODO ybrosseau: should be hidden in the CTF format */
-#include <babeltrace/ctf/types.h> /* for ctf_packet_seek */
-
 #include <glib.h>
 
 struct bt_context *bt_context_create(void)
@@ -71,8 +68,7 @@ int bt_context_add_trace(struct bt_context *ctx, const char *path,
                ret = -1;
                goto end;
        }
-       td = fmt->open_trace(path, O_RDONLY,
-                            ctf_packet_seek, NULL);
+       td = fmt->open_trace(path, O_RDONLY, NULL, NULL);
        if (!td) {
                fprintf(stderr, "[error] [Context] Cannot open_trace of the format %s .\n\n",
                                path);
This page took 0.022694 seconds and 4 git commands to generate.