1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-03-14 22:46:04 +00:00

Add modules back to default target

This commit is contained in:
jsteube 2019-01-20 17:18:22 +01:00
parent e493704e5f
commit 4557bcfbd9
2 changed files with 2 additions and 2 deletions

View File

@ -396,7 +396,7 @@ endif
## Targets: Native Compilation ## Targets: Native Compilation
## ##
default: $(HASHCAT_FRONTEND) default: $(HASHCAT_FRONTEND) modules
clean: clean:
$(RM) -f $(HASHCAT_FRONTEND) $(RM) -f $(HASHCAT_FRONTEND)

View File

@ -116,7 +116,7 @@ int module_hash_encode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
const int out_len = 40; const int out_len = 40;
snprintf (line_buf, out_len, "{SHA}%s", (char *) ptr_plain); snprintf (line_buf, line_size, "{SHA}%s", (char *) ptr_plain);
return out_len; return out_len;
} }