Error early on invalid tracker type for UST domain
[lttng-tools.git] / src / bin / lttng / commands / enable_events.c
index f11436e165759591a0c9ac846e1e3e37f8d87e16..6889b63d73eb12cacc8db055c4bd0d2a0bcc1fd1 100644 (file)
@@ -435,7 +435,7 @@ static int parse_userspace_probe_opts(struct lttng_event *ev, char *opt)
                lookup_method =
                        lttng_userspace_probe_location_lookup_method_tracepoint_sdt_create();
                if (!lookup_method) {
-                       WARN("Failed to create ELF lookup method");
+                       WARN("Failed to create SDT lookup method");
                        ret = CMD_ERROR;
                        goto end_string;
                }
@@ -484,8 +484,8 @@ static int parse_userspace_probe_opts(struct lttng_event *ev, char *opt)
                }
 
                /*
-                * Check if the file exists using access(2). If it does not, walk the
-                * $PATH.
+                * Check if the file exists using access(2), If it does not,
+                * return an error.
                 */
                ret = access(real_target_path, F_OK);
                if (ret) {
This page took 0.023511 seconds and 4 git commands to generate.