On stream creation, it's an UST error code and not the errno one.
Signed-off-by: David Goulet <dgoulet@efficios.com>
if (ret < 0) {
lttng_fd_put(LTTNG_FD_APPS, 2);
/* Indicates that there is no more stream for that channel. */
- if (ret != -ENOENT) {
+ if (ret != -LTTNG_UST_ERR_NOENT) {
ERR("UST create metadata stream failed (ret: %d)", ret);
}
goto error;
if (ret < 0) {
/* Free unused memory after this point. */
free(ustream);
- if (ret == -ENOENT) {
+ if (ret == -LTTNG_UST_ERR_NOENT) {
/* Got all streams. Continue normal execution. */
break;
}