Move event context to private structures
[lttng-ust.git] / liblttng-ust / getenv.c
index a05653d75b2e21ea19443b2ad160d5b1bebfe440..ea8edbcdf5244878f5a7fd4f900068f0502e4fe7 100644 (file)
@@ -1,19 +1,7 @@
 /*
- * Copyright (C) 2017 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; only
- * version 2.1 of the License.
- *
- * 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
+ * Copyright (C) 2017 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  */
 
 #include <stdlib.h>
@@ -22,7 +10,7 @@
 #include <stddef.h>
 #include <sys/types.h>
 #include <usterr-signal-safe.h>
-#include <helper.h>
+#include <ust-helper.h>
 #include "getenv.h"
 
 enum lttng_env_secure {
@@ -62,7 +50,7 @@ int lttng_is_setuid_setgid(void)
        return geteuid() != getuid() || getegid() != getgid();
 }
 
-char *lttng_getenv(const char *name)
+char *lttng_ust_getenv(const char *name)
 {
        size_t i;
        struct lttng_env *e;
This page took 0.023183 seconds and 4 git commands to generate.