aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-05 19:13:44 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-05 19:13:44 +0200
commit92b8d9c9faf599cd323c04d4f6853f2de840279c (patch)
tree090d47f60fdbb86168c6777b6a7a7070d5deafe6
parentfda9fafe279d9394ad53313320a949c86f646734 (diff)
downloadbusybox-w32-92b8d9c9faf599cd323c04d4f6853f2de840279c.tar.gz
busybox-w32-92b8d9c9faf599cd323c04d4f6853f2de840279c.tar.bz2
busybox-w32-92b8d9c9faf599cd323c04d4f6853f2de840279c.zip
ash: note which versions of glibc exhibit "rho bug"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/ash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index e5fdd1646..5da23c34b 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -5935,7 +5935,8 @@ rmescapes(char *str, int flag)
5935 * getting encoded as "cf,CTLESC,81" 5935 * getting encoded as "cf,CTLESC,81"
5936 * and here, converted to "cf,\,81" - 5936 * and here, converted to "cf,\,81" -
5937 * which does not go well with some flavors 5937 * which does not go well with some flavors
5938 * of fnmatch() in unicode locales. 5938 * of fnmatch() in unicode locales
5939 * (for example, glibc <= 2.22).
5939 * 5940 *
5940 * Lets add "\" only on the chars which need it. 5941 * Lets add "\" only on the chars which need it.
5941 */ 5942 */