Fix: consumer add channel return value was positive on error
[lttng-tools.git] / src / common / kernel-consumer / kernel-consumer.c
index 39b635dc51bacd9c97b97579cafd833731bfba13..11830fc05a087f4f601a3156560ac5b7a6735365 100644 (file)
@@ -174,7 +174,7 @@ int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
                }
 
                /* If we received an error in add_channel, we need to report it. */
-               if (ret != 0) {
+               if (ret < 0) {
                        ret = consumer_send_status_msg(sock, ret);
                        if (ret < 0) {
                                goto error_fatal;
This page took 0.02413 seconds and 4 git commands to generate.