aboutsummaryrefslogtreecommitdiffstats
path: root/src/faudit/pid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/faudit/pid.c')
-rw-r--r--src/faudit/pid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/faudit/pid.c b/src/faudit/pid.c
index 5744ab244..53b59a838 100644
--- a/src/faudit/pid.c
+++ b/src/faudit/pid.c
@@ -80,10 +80,10 @@ void pid_test(void) {
80 } 80 }
81 81
82 82
83 printf("GOOD: Process PID %d, running in a PID namespace\n", getpid()); 83 printf("GOOD: process PID %d, running in a PID namespace\n", getpid());
84 84
85 // try to guess the type of container/sandbox 85 // try to guess the type of container/sandbox
86 char *str = getenv("container"); 86 char *str = getenv("container");
87 if (str) 87 if (str)
88 printf("Container/sandbox: %s\n", str); 88 printf("INFO: container/sandbox %s\n", str);
89} 89}