summaryrefslogtreecommitdiff
authorDenys Vlasenko <vda.linux@googlemail.com>2016-12-21 20:04:16 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2017-01-01 12:01:04 (GMT)
commit2169b25b152b54935fdc706dbf1032df6ae1af27 (patch)
treed14d87b16f9a7529009fca134c0d1a055b7e33f5
parent18a7bee73670af792d25dac1835e75eeeef0a08e (diff)
downloadbusybox-2169b25b152b54935fdc706dbf1032df6ae1af27.zip
busybox-2169b25b152b54935fdc706dbf1032df6ae1af27.tar.gz
busybox-2169b25b152b54935fdc706dbf1032df6ae1af27.tar.bz2
ash: clarify uclibc glob() bug in comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat
-rw-r--r--shell/ash.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 7d45b2c..802626d 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -57,6 +57,9 @@
# error with backslash, even ones which do not need to be: "/a-b" -> "/a\-b"
# error glob() should unbackslash them and match. uClibc does not unbackslash,
# error fails to match dirname, subsequently not expanding <pattern> in it.
+// Testcase:
+// if (glob("/etc/polkit\\-1", 0, NULL, &pglob)) - this returns 0 on uclibc, no bug
+// if (glob("/etc/polkit\\-1/*", 0, NULL, &pglob)) printf("uclibc bug!\n");
#endif
#if !ENABLE_ASH_INTERNAL_GLOB