Fix: use of session_name instead of channel_name in condition hash
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread-events.c
index 7de6595d8e51db3f6306eda112d493c7da0494b7..00a2bf66f559f1d5b8d6ee2c019e3dd0c2241534 100644 (file)
@@ -258,7 +258,7 @@ unsigned long lttng_condition_buffer_usage_hash(
                hash ^= hash_key_str(condition->session_name, lttng_ht_seed);
        }
        if (condition->channel_name) {
-               hash ^= hash_key_str(condition->session_name, lttng_ht_seed);
+               hash ^= hash_key_str(condition->channel_name, lttng_ht_seed);
        }
        if (condition->domain.set) {
                hash ^= hash_key_ulong(
This page took 0.024386 seconds and 5 git commands to generate.