mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-28 10:52:27 +00:00
* grub-core/commands/wildcard.c (make_regex): Handle @.
This commit is contained in:
parent
4155e6974a
commit
ab80f326f4
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user