X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fust-registry.c;h=3f1390dc3df1e65449700c12fa502215a9e29426;hp=2ba41ed45dffbb91d272c4561dcf040290f6ed58;hb=b4d096a6292e78c601dba161dbb15f48ad89935f;hpb=4628484ae860b8cf506427e864c7d1933da32777 diff --git a/src/bin/lttng-sessiond/ust-registry.c b/src/bin/lttng-sessiond/ust-registry.c index 2ba41ed45..3f1390dc3 100644 --- a/src/bin/lttng-sessiond/ust-registry.c +++ b/src/bin/lttng-sessiond/ust-registry.c @@ -43,13 +43,13 @@ static int ht_match_event(struct cds_lfht_node *node, const void *_key) key = _key; /* It has to be a perfect match. */ - if (strncmp(event->name, key->name, sizeof(event->name)) != 0) { + if (strncmp(event->name, key->name, sizeof(event->name))) { goto no_match; } /* It has to be a perfect match. */ if (strncmp(event->signature, key->signature, - strlen(event->signature) != 0)) { + strlen(event->signature))) { goto no_match; } @@ -593,7 +593,6 @@ int ust_registry_session_init(struct ust_registry_session **sessionp, S_IRWXU | S_IRWXG, euid, egid); if (ret) { - errno = -ret; PERROR("run_as_mkdir_recursive"); goto error; } @@ -604,7 +603,6 @@ int ust_registry_session_init(struct ust_registry_session **sessionp, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR, euid, egid); if (ret < 0) { - errno = -ret; PERROR("Opening metadata file"); goto error; }