Support new lttng-ust error code
[lttng-tools.git] / src / bin / lttng-sessiond / channel.c
index e2cdf563a6bbc42f9cf6f583b323c8c25b6217b8..8b9adfba8370894050c5fd214c64c5282682fed8 100644 (file)
@@ -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;
        }
This page took 0.023366 seconds and 4 git commands to generate.