X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fchannel.c;h=8b9adfba8370894050c5fd214c64c5282682fed8;hp=e2cdf563a6bbc42f9cf6f583b323c8c25b6217b8;hb=49c336c1679295a31b92223dca05feccfe3e3464;hpb=911a481190c7af4c043bb5482152a76e9787c5b5 diff --git a/src/bin/lttng-sessiond/channel.c b/src/bin/lttng-sessiond/channel.c index e2cdf563a..8b9adfba8 100644 --- a/src/bin/lttng-sessiond/channel.c +++ b/src/bin/lttng-sessiond/channel.c @@ -203,7 +203,7 @@ int channel_ust_enable(struct ltt_ust_session *usess, int domain, } if (ret < 0) { - if (ret != -EEXIST) { + if (ret != -LTTNG_UST_ERR_EXIST) { ret = LTTNG_ERR_UST_CHAN_ENABLE_FAIL; goto error; } else { @@ -284,7 +284,7 @@ int channel_ust_create(struct ltt_ust_session *usess, int domain, goto error_free_chan; } - if (ret < 0 && ret != -EEXIST) { + if (ret < 0 && ret != -LTTNG_UST_ERR_EXIST) { ret = LTTNG_ERR_UST_CHAN_FAIL; goto error_free_chan; } @@ -341,7 +341,7 @@ int channel_ust_disable(struct ltt_ust_session *usess, int domain, goto error; } - if (ret < 0 && ret != -EEXIST) { + if (ret < 0 && ret != -LTTNG_UST_ERR_EXIST) { ret = LTTNG_ERR_UST_CHAN_DISABLE_FAIL; goto error; }