summaryrefslogtreecommitdiffstats
path: root/src/faudit/network.c
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-07-05 09:51:18 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-07-05 09:51:18 -0400
commit86286babe204b6ac95a1cbc0af958e79d43655b5 (patch)
tree695fd0594a94c893e4c77492c460c3da3e1fec58 /src/faudit/network.c
parentgitignore (diff)
downloadfirejail-86286babe204b6ac95a1cbc0af958e79d43655b5.tar.gz
firejail-86286babe204b6ac95a1cbc0af958e79d43655b5.tar.zst
firejail-86286babe204b6ac95a1cbc0af958e79d43655b5.zip
audit feature
Diffstat (limited to 'src/faudit/network.c')
-rw-r--r--src/faudit/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/faudit/network.c b/src/faudit/network.c
index bb3116c3b..39821cd25 100644
--- a/src/faudit/network.c
+++ b/src/faudit/network.c
@@ -40,7 +40,7 @@ void check_ssh(void) {
40 if (connect(sock , (struct sockaddr *)&server , sizeof(server)) < 0) 40 if (connect(sock , (struct sockaddr *)&server , sizeof(server)) < 0)
41 printf("GOOD: SSH server not available on localhost.\n"); 41 printf("GOOD: SSH server not available on localhost.\n");
42 else { 42 else {
43 printf("MAYBE: An SSH server is accessible on localhost. "); 43 printf("MAYBE: an SSH server is accessible on localhost. ");
44 printf("It could be a good idea to create a new network namespace using \"--net=none\" or \"--net=eth0\".\n"); 44 printf("It could be a good idea to create a new network namespace using \"--net=none\" or \"--net=eth0\".\n");
45 } 45 }
46 46