summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hush.c b/common/hush.c
index 3624679040..db47e6569c 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -337,7 +337,7 @@ static void b_free(o_string *o)
*/
static int b_addqchr(o_string *o, int ch, int quote)
{
- if (quote && strchr("*?[\\",ch)) {
+ if (quote && strchr("*?[",ch)) {
int rc;
rc = b_addchr(o, '\\');
if (rc)