summaryrefslogtreecommitdiff
path: root/0031-Fix-question-mark-wildcard-withing-a-file-name.patch
diff options
context:
space:
mode:
Diffstat (limited to '0031-Fix-question-mark-wildcard-withing-a-file-name.patch')
-rw-r--r--0031-Fix-question-mark-wildcard-withing-a-file-name.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/0031-Fix-question-mark-wildcard-withing-a-file-name.patch b/0031-Fix-question-mark-wildcard-withing-a-file-name.patch
new file mode 100644
index 0000000..acc8f6d
--- /dev/null
+++ b/0031-Fix-question-mark-wildcard-withing-a-file-name.patch
@@ -0,0 +1,28 @@
+From 0da42468ac9518a544aad57d22d7697d6bdfa969 Mon Sep 17 00:00:00 2001
+From: Martin Sehnoutka <msehnout@redhat.com>
+Date: Thu, 17 Nov 2016 13:25:12 +0100
+Subject: [PATCH 31/59] Fix question mark wildcard withing a file name.
+
+Previously '?' worked only at the end of a file name, now it can
+be used anywhere.
+---
+ ls.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/ls.c b/ls.c
+index 3c0988c..35c15c7 100644
+--- a/ls.c
++++ b/ls.c
+@@ -459,7 +459,8 @@ vsf_filename_passes_filter(const struct mystr* p_filename_str,
+ must_match_at_current_pos = 0;
+ }
+ } while (locate_result.found &&
+- str_getlen(&name_remain_str) > 0 && last_token != '*');
++ str_getlen(&name_remain_str) > 0 &&
++ last_token != '*' && last_token != '?');
+ }
+ /* Any incoming string left means no match unless we ended on the correct
+ * type of wildcard.
+--
+2.14.4
+