mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
UPD: Hash verification - skip '#' comments
This commit is contained in:
parent
c6c5fbaed7
commit
e41241b8bd
1 changed files with 1 additions and 1 deletions
|
|
@ -292,7 +292,7 @@ begin
|
|||
// Skip empty lines
|
||||
if (Length(FCheckSumFile[I]) = 0) then Continue;
|
||||
// Skip comments
|
||||
if (FCheckSumFile[I][1] = ';') then Continue;
|
||||
if (FCheckSumFile[I][1] in [';', '#']) then Continue;
|
||||
|
||||
// Determine hash type by length
|
||||
if (HashType = False) and (Algorithm = HASH_SHA3_224) then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue