Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -263,10 +263,10 @@ fmt_registers.h: .plugin_fmt_list
$(CC) -DFMT_REGISTERS_H -E -P $(CFLAGS) $(filter-out opencl_%_fmt_plug.c, $(wildcard *_fmt_plug.c)) | grep -F "john_register_one" | $(SORT) -f > $@ || true
$(CC) -DFMT_REGISTERS_H -E -P $(CFLAGS) $(wildcard opencl_*_fmt_plug.c) | grep -F "john_register_one" | $(SORT) -f >> $@ || true

.PHONY: subdirs $(SUBDIRS)

SUBDIRS = mbedtls secp256k1 ed25519-donna poly1305-donna @ZTEX_SUBDIRS@

.PHONY: subdirs $(SUBDIRS)

subdirs: $(SUBDIRS)

$(SUBDIRS):
Expand Down
2 changes: 1 addition & 1 deletion src/john.c
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ static void john_load(void)
if (ztex_detected_list->count % options.fork) {
fprintf(stderr, "Number of ZTEX devices must be "
"a multiple of forks. "
"Suggesting to use \"--fork=%d\".\n",
"Suggesting to use \"--fork=%ld\".\n",
ztex_detected_list->count);
error();
}
Expand Down