diff options
author | Denys Vlasenko | 2017-07-05 19:13:44 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-07-05 19:13:44 +0200 |
commit | 92b8d9c9faf599cd323c04d4f6853f2de840279c (patch) | |
tree | 090d47f60fdbb86168c6777b6a7a7070d5deafe6 /shell | |
parent | fda9fafe279d9394ad53313320a949c86f646734 (diff) | |
download | busybox-92b8d9c9faf599cd323c04d4f6853f2de840279c.zip busybox-92b8d9c9faf599cd323c04d4f6853f2de840279c.tar.gz |
ash: note which versions of glibc exhibit "rho bug"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index e5fdd16..5da23c3 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -5935,7 +5935,8 @@ rmescapes(char *str, int flag) * getting encoded as "cf,CTLESC,81" * and here, converted to "cf,\,81" - * which does not go well with some flavors - * of fnmatch() in unicode locales. + * of fnmatch() in unicode locales + * (for example, glibc <= 2.22). * * Lets add "\" only on the chars which need it. */ |