1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2026-01-05 21:28:12 -06:00

Windows: first implementation of CLI support for creating volumes.

This commit is contained in:
Mounir IDRASSI
2015-08-25 11:42:01 +02:00
parent 85c1bc34e3
commit 4d7dc3ba25
9 changed files with 443 additions and 54 deletions

View File

@@ -450,8 +450,8 @@ int EAGetByName (char *name)
do
{
EAGetName (n, ea, 0);
if (strcmp (n, name) == 0)
EAGetName (n, ea, 1);
if (_stricmp (n, name) == 0)
return ea;
}
while (ea = EAGetNext (ea));