summaryrefslogtreecommitdiff
path: root/src/shared/env-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/env-util.c')
-rw-r--r--src/shared/env-util.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/shared/env-util.c b/src/shared/env-util.c
index 20b208f63c..d90b878d19 100644
--- a/src/shared/env-util.c
+++ b/src/shared/env-util.c
@@ -28,6 +28,7 @@
#include "util.h"
#include "env-util.h"
#include "def.h"
+#include "unit.h"
#define VALID_CHARS_ENV_NAME \
DIGITS LETTERS \
@@ -414,7 +415,7 @@ char *strv_env_get(char **l, const char *name) {
return strv_env_get_n(l, name, strlen(name));
}
-char **strv_env_clean_log(char **e, const char *message) {
+char **strv_env_clean_log(char **e, const char *unit_id, const char *message) {
char **p, **q;
int k = 0;
@@ -424,7 +425,7 @@ char **strv_env_clean_log(char **e, const char *message) {
if (!env_assignment_is_valid(*p)) {
if (message)
- log_error("Ignoring invalid environment '%s': %s", *p, message);
+ log_error_unit(unit_id, "Ignoring invalid environment '%s': %s", *p, message);
free(*p);
continue;
}
@@ -451,5 +452,5 @@ char **strv_env_clean_log(char **e, const char *message) {
}
char **strv_env_clean(char **e) {
- return strv_env_clean_log(e, NULL);
+ return strv_env_clean_log(e, NULL, NULL);
}