X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=liblttng-ustconsumer%2Flttng-ustconsumer.c;h=10213c1c97dcb8b4d93a80895a0e56d7ed9297db;hb=734f79bf717d87817623d382c59086dc9e8ef610;hp=8305b061a882fff9021037e1716ff32fb3f36935;hpb=2c1dd183d5e75a133090c65ecb4ff326981b3ad9;p=lttng-tools.git diff --git a/liblttng-ustconsumer/lttng-ustconsumer.c b/liblttng-ustconsumer/lttng-ustconsumer.c index 8305b061a..10213c1c9 100644 --- a/liblttng-ustconsumer/lttng-ustconsumer.c +++ b/liblttng-ustconsumer/lttng-ustconsumer.c @@ -33,7 +33,8 @@ #include #include #include -#include + +#include "common/runas.h" extern struct lttng_consumer_global_data consumer_data; extern int consumer_poll_timeout; @@ -394,7 +395,7 @@ int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream) /* Opening the tracefile in write mode */ if (stream->path_name != NULL) { - ret = open_run_as(stream->path_name, + ret = run_as_open(stream->path_name, O_WRONLY|O_CREAT|O_TRUNC, S_IRWXU|S_IRWXG|S_IRWXO, stream->uid, stream->gid);