* grub-core/commands/wildcard.c (make_regex): Handle @.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2011-08-23 11:19:26 +02:00
parent 4155e6974a
commit ab80f326f4
2 changed files with 5 additions and 0 deletions

View file

@ -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>
* util/grub-install.in: Move cryptodisk logic to appropriate place.

View file

@ -139,6 +139,7 @@ make_regex (const char *start, const char *end, regex_t *regexp)
case '.':
case '(':
case ')':
case '@':
buffer[i++] = '\\';
buffer[i++] = ch;
break;