mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-21 22:03:46 -07:00
Fix typo when only 1 password is found
This commit is contained in:
parent
ebbea58cf6
commit
b911269c1a
1 changed files with 1 additions and 1 deletions
2
hydra.c
2
hydra.c
|
@ -4055,7 +4055,7 @@ int main(int argc, char *argv[]) {
|
|||
printf("%d of %d target%s%scompleted, %" hPRIu64 " valid password",
|
||||
hydra_brains.targets - j - k - error, hydra_brains.targets, hydra_brains.targets == 1 ? " " : "s ",
|
||||
hydra_brains.found > 0 ? "successfully " : "", hydra_brains.found);
|
||||
printf("%s", hydra_brains.found < 1 ? "" : "s");
|
||||
printf("%s", hydra_brains.found < 2 ? "" : "s");
|
||||
printf(" found\n");
|
||||
|
||||
error += j;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue