aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar glitsj16 <glitsj16@users.noreply.github.com>2019-03-29 23:36:15 +0000
committerLibravatar GitHub <noreply@github.com>2019-03-29 23:36:15 +0000
commitf0d953b63387ca6fa1ea04e1822733767ce62583 (patch)
treef735c2005ae50933b7c9826629916f8ae35e4127 /src
parentFive more game profiles (diff)
downloadfirejail-f0d953b63387ca6fa1ea04e1822733767ce62583.tar.gz
firejail-f0d953b63387ca6fa1ea04e1822733767ce62583.tar.zst
firejail-f0d953b63387ca6fa1ea04e1822733767ce62583.zip
Fix typo's in firecfg util.c (#2627)
Diffstat (limited to 'src')
-rw-r--r--src/firecfg/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/firecfg/util.c b/src/firecfg/util.c
index 00dbad073..23a66ba67 100644
--- a/src/firecfg/util.c
+++ b/src/firecfg/util.c
@@ -59,8 +59,8 @@ int which(const char *program) {
59 char *ptr = strtok(path2, ":"); 59 char *ptr = strtok(path2, ":");
60 while (ptr) { 60 while (ptr) {
61 // Ubuntu 18.04 is adding /snap/bin to PATH; 61 // Ubuntu 18.04 is adding /snap/bin to PATH;
62 // they populate /snap/bin with simbolic links to /usr/bin/ programs; 62 // they populate /snap/bin with symbolic links to /usr/bin/ programs;
63 // most simlinked programs are not installed by default. 63 // most symlinked programs are not installed by default.
64 // Removing /snap/bin from our search 64 // Removing /snap/bin from our search
65 if (strcmp(ptr, "/snap/bin") != 0) { 65 if (strcmp(ptr, "/snap/bin") != 0) {
66 if (find(program, ptr)) { 66 if (find(program, ptr)) {