diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wordlist.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wordlist.go b/src/wordlist.go index 8e9dbca..4125851 100644 --- a/src/wordlist.go +++ b/src/wordlist.go @@ -42,7 +42,7 @@ func writeWordlistToChannel(channels channels, wordlist []string) { // write all the words from the wordlist into the wordlistChannel for _, line := range wordlist { - wordlistChannel <- line + channels.wordlistChannel <- line } log.Printf("%s Done inserting the wordlist elements into the wordlist channel", green("[+]")) |