Fix logic bug

I can provide another patch version, which swaps the operands instead.

Signed-off-by: Christian Inci <chris.gh@broke-the-inter.net>
This commit is contained in:
Christian Inci 2021-04-26 20:56:22 +02:00
parent dd8348bcf0
commit a2d715b870

View file

@ -1494,7 +1494,7 @@ int32_t service_smb_init(char *ip, int32_t sp, unsigned char options, char *misc
ctime = time(NULL);
do {
usleepn(300);
} while ((ready = hydra_data_ready(sock)) <= 0 && ctime + 5 <= time(NULL));
} while ((ready = hydra_data_ready(sock)) <= 0 && ctime + 5 >= time(NULL));
if (ready <= 0) {
fprintf(stderr, "[ERROR] no reply from target smb://%s:%d/\n", hostname, port);