sessiond: trigger: run trigger actions through an action executor
[lttng-tools.git] / src / common / uuid.c
index 68fddc0a2ff0089376275b8db80064ad734bc880..26fb61e99449a5a9f3a0b40a262787c36996c49c 100644 (file)
@@ -2,20 +2,11 @@
  * Copyright (C) 2018 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  * Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
  *
- * This library is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License, version 2.1 only,
- * as published by the Free Software Foundation.
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
- * for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this library; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <common/compat/string.h>
 #include <stddef.h>
 #include <stdint.h>
 #include <stdio.h>
@@ -43,7 +34,7 @@ int lttng_uuid_from_str(const char *str_in, lttng_uuid uuid_out)
                goto end;
        }
 
-       if (strnlen(str_in, LTTNG_UUID_STR_LEN) != LTTNG_UUID_STR_LEN - 1) {
+       if (lttng_strnlen(str_in, LTTNG_UUID_STR_LEN) != LTTNG_UUID_STR_LEN - 1) {
                ret = -1;
                goto end;
        }
This page took 0.025355 seconds and 5 git commands to generate.