aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/fs_bin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firejail/fs_bin.c b/src/firejail/fs_bin.c
index f6c83ef26..6bd7ecd17 100644
--- a/src/firejail/fs_bin.c
+++ b/src/firejail/fs_bin.c
@@ -240,7 +240,7 @@ static void globbing(char *fname, FILE *fplist) {
240 size_t j; 240 size_t j;
241 for (j = 0; j < globbuf.gl_pathc; j++) { 241 for (j = 0; j < globbuf.gl_pathc; j++) {
242 assert(globbuf.gl_pathv[j]); 242 assert(globbuf.gl_pathv[j]);
243 // testing for GLOB_NOCHECK - no pattern mached returns the origingal pattern 243 // testing for GLOB_NOCHECK - no pattern matched returns the original pattern
244 if (strcmp(globbuf.gl_pathv[j], pattern) == 0) 244 if (strcmp(globbuf.gl_pathv[j], pattern) == 0)
245 continue; 245 continue;
246 246