about summary refs log tree commit diff
path: root/src/wordlist.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/wordlist.go')
-rw-r--r--src/wordlist.go2
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("[+]"))