X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=ltt-sessiond%2Fsession.c;h=93f03e4c5ef11386d7fc5fdf36288993d246b078;hb=a55dd1367a35379b1208ddaf3212acb48e78004e;hp=54e19669efd9e78c48578b0207d660f2146cbce4;hpb=5b97ec606d485e091cf2c2bc06b79f05d18212aa;p=lttng-tools.git diff --git a/ltt-sessiond/session.c b/ltt-sessiond/session.c index 54e19669e..93f03e4c5 100644 --- a/ltt-sessiond/session.c +++ b/ltt-sessiond/session.c @@ -113,7 +113,7 @@ struct ltt_session *find_session_by_name(char *name) struct ltt_session *iter; cds_list_for_each_entry(iter, <t_session_list.head, list) { - if (strncmp(iter->name, name, strlen(iter->name)) == 0) { + if (strncmp(iter->name, name, strlen(name)) == 0) { found = 1; break; } @@ -237,7 +237,7 @@ void get_lttng_session(struct lttng_session *lt) */ cds_list_for_each_entry(iter, <t_session_list.head, list) { /* Copy name and uuid */ - uuid_unparse(iter->uuid, lsess.uuid); + uuid_copy(lsess.uuid, iter->uuid); strncpy(lsess.name, iter->name, sizeof(lsess.name)); lsess.name[sizeof(lsess.name) - 1] = '\0'; memcpy(<[i], &lsess, sizeof(lsess));