aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)) {