From: David Goulet Date: Tue, 3 Dec 2013 16:35:31 +0000 (-0500) Subject: Fix: bad logical check of error codes X-Git-Tag: v2.3.2~22 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;ds=sidebyside;h=86f52f64d190339e1bdfd643eda798b657e5f296;p=lttng-tools.git Fix: bad logical check of error codes Fixes #701 Signed-off-by: David Goulet --- diff --git a/src/bin/lttng-sessiond/ust-app.c b/src/bin/lttng-sessiond/ust-app.c index ad7a817dc..315e503ed 100644 --- a/src/bin/lttng-sessiond/ust-app.c +++ b/src/bin/lttng-sessiond/ust-app.c @@ -3064,7 +3064,7 @@ int ust_app_list_events(struct lttng_event **events) /* Handle ustctl error. */ if (ret < 0) { free(tmp_event); - if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) { + if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) { ERR("UST app tp list get failed for app %d with ret %d", app->sock, ret); } else { @@ -3164,7 +3164,7 @@ int ust_app_list_event_fields(struct lttng_event_field **fields) /* Handle ustctl error. */ if (ret < 0) { free(tmp_event); - if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) { + if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) { ERR("UST app tp list field failed for app %d with ret %d", app->sock, ret); } else {