BUG: Added carrot (^) to characters that need quoting. The solaris shell needs it.
This commit is contained in:
parent
d9bbc3f45f
commit
07fe611fc6
@ -71,7 +71,7 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c)
|
|||||||
return ((c == '\'') || (c == '`') || (c == ';') || (c == '#') ||
|
return ((c == '\'') || (c == '`') || (c == ';') || (c == '#') ||
|
||||||
(c == '&') || (c == '$') || (c == '(') || (c == ')') ||
|
(c == '&') || (c == '$') || (c == '(') || (c == ')') ||
|
||||||
(c == '~') || (c == '<') || (c == '>') || (c == '|') ||
|
(c == '~') || (c == '<') || (c == '>') || (c == '|') ||
|
||||||
(c == '*') || (c == '\\'));
|
(c == '*') || (c == '^') || (c == '\\'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*--------------------------------------------------------------------------*/
|
/*--------------------------------------------------------------------------*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user