mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-08 21:52:51 +00:00
Merge pull request #1157 from philsmd/master
min pass length init: typo fixed
This commit is contained in:
commit
f471233544
@ -5,6 +5,7 @@
|
|||||||
##
|
##
|
||||||
|
|
||||||
- Fixed a problem where --keyspace combined with custom charsets incorrectly displayed an error message
|
- Fixed a problem where --keyspace combined with custom charsets incorrectly displayed an error message
|
||||||
|
- Fixed a typo that resulted in the minimum password length not being correctly initialized
|
||||||
|
|
||||||
* changes v3.30 -> v3.40:
|
* changes v3.30 -> v3.40:
|
||||||
|
|
||||||
|
@ -22491,7 +22491,7 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
|
|||||||
|
|
||||||
// pw_min
|
// pw_min
|
||||||
|
|
||||||
hashconfig->pw_max = PW_MIN;
|
hashconfig->pw_min = PW_MIN;
|
||||||
|
|
||||||
switch (hashconfig->hash_mode)
|
switch (hashconfig->hash_mode)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user