* grub-core/commands/wildcard.c (make_regex): Handle @.
This commit is contained in:
parent
4155e6974a
commit
ab80f326f4
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/commands/wildcard.c (make_regex): Handle @.
|
||||||
|
|
||||||
2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* util/grub-install.in: Move cryptodisk logic to appropriate place.
|
* util/grub-install.in: Move cryptodisk logic to appropriate place.
|
||||||
|
|
|
@ -139,6 +139,7 @@ make_regex (const char *start, const char *end, regex_t *regexp)
|
||||||
case '.':
|
case '.':
|
||||||
case '(':
|
case '(':
|
||||||
case ')':
|
case ')':
|
||||||
|
case '@':
|
||||||
buffer[i++] = '\\';
|
buffer[i++] = '\\';
|
||||||
buffer[i++] = ch;
|
buffer[i++] = ch;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue