X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;ds=sidebyside;f=liblttng-ust%2Flttng-context-provider.c;h=b51ef23f38b40e5ea74d3c22995da9d2fd11d2f2;hb=8b05d0d42a5a7801e5c3bcd76c5230188cfbe236;hp=5557b137cdc24f4ed68077c7bc72d23f94e7e779;hpb=bbdae2985bdcfa62c798a879bc3322e693678e96;p=lttng-ust.git diff --git a/liblttng-ust/lttng-context-provider.c b/liblttng-ust/lttng-context-provider.c index 5557b137..b51ef23f 100644 --- a/liblttng-ust/lttng-context-provider.c +++ b/liblttng-ust/lttng-context-provider.c @@ -73,7 +73,7 @@ int lttng_ust_context_provider_register(struct lttng_ust_context_provider *provi /* Provider name starts with "$app.". */ if (strncmp("$app.", provider->name, strlen("$app.")) != 0) return -EINVAL; - /* Provider name cannot contain a column character. */ + /* Provider name cannot contain a colon character. */ if (strchr(provider->name, ':')) return -EINVAL; if (ust_lock()) {