mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 00:07:38 +00:00
Merge pull request #6923
cc034fe0c
util: fix escaping more than one ?* in glob_to_regex (moneromooo-monero)
This commit is contained in:
commit
003a06f030
1 changed files with 3 additions and 3 deletions
|
@ -1000,13 +1000,13 @@ std::string get_nix_version_display_string()
|
|||
for (char c: val)
|
||||
{
|
||||
if (c == '*')
|
||||
newval += escape ? "*" : ".*";
|
||||
newval += escape ? "*" : ".*", escape = false;
|
||||
else if (c == '?')
|
||||
newval += escape ? "?" : ".";
|
||||
newval += escape ? "?" : ".", escape = false;
|
||||
else if (c == '\\')
|
||||
newval += '\\', escape = !escape;
|
||||
else
|
||||
newval += c;
|
||||
newval += c, escape = false;
|
||||
}
|
||||
return newval;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue