From df7e91a82d7edaf44819d372a7db9826fafaa037 Mon Sep 17 00:00:00 2001 From: xtaci Date: Tue, 10 Dec 2024 20:48:46 +0800 Subject: [PATCH] fix typo --- cmd/grasshopper/cmd/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/grasshopper/cmd/start.go b/cmd/grasshopper/cmd/start.go index 3d7eb1d..8bef71d 100644 --- a/cmd/grasshopper/cmd/start.go +++ b/cmd/grasshopper/cmd/start.go @@ -77,7 +77,7 @@ var startCmd = &cobra.Command{ crypterIn := newCrypt(passIn, config.CI) passOut := pbkdf2.Key([]byte(config.KO), []byte(SALT), ITERATIONS, KEYLEN, sha1.New) crypterOut := newCrypt(passOut, config.CO) - log.Println("Crytography initialized") + log.Println("Cryptography initialized") // Initialize and start the UDP listener. listener, err := grasshopper.ListenWithOptions(config.Listen, config.NextHops, config.SockBuf, config.Timeout, crypterIn, crypterOut, nil, nil, log.Default())