Skip to content
This repository was archived by the owner on Jun 10, 2025. It is now read-only.
Open
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
6 changes: 3 additions & 3 deletions gocat.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package gocat
/*
#cgo CFLAGS: -I/usr/local/include/hashcat -std=c99 -Wall -O0 -g
#cgo linux CFLAGS: -D_GNU_SOURCE
#cgo linux LDFLAGS: -L/usr/local/lib -lhashcat.6.1.1
#cgo darwin LDFLAGS: -L/usr/local/lib -lhashcat.6.1.1
#cgo linux LDFLAGS: -L/usr/local/lib -lhashcat.so.6.2.4
#cgo darwin LDFLAGS: -L/usr/local/lib -lhashcat.6.2.4

#include "wrapper.h"
*/
Expand Down Expand Up @@ -273,7 +273,7 @@ func callback(id uint32, hcCtx *C.hashcat_ctx_t, wrapper unsafe.Pointer, buf uns
case C.EVENT_CRACKER_HASH_CRACKED, C.EVENT_POTFILE_HASH_SHOW:
// Grab the separator for this session out of user options
userOpts := hcCtx.user_options
sepr := C.GoString(&userOpts.separator)
sepr := C.GoString(userOpts.separator)
// XXX(cschmitt): What changed here that this is no longer set?
if sepr == "" {
sepr = ":"
Expand Down