aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */