BUG: Added carrot (^) to characters that need quoting. The solaris shell needs it.

This commit is contained in:
Brad King 2007-05-18 09:17:36 -04:00
parent d9bbc3f45f
commit 07fe611fc6
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c)
return ((c == '\'') || (c == '`') || (c == ';') || (c == '#') ||
(c == '&') || (c == '$') || (c == '(') || (c == ')') ||
(c == '~') || (c == '<') || (c == '>') || (c == '|') ||
(c == '*') || (c == '\\'));
(c == '*') || (c == '^') || (c == '\\'));
}
/*--------------------------------------------------------------------------*/