From b2f446fd6b404c69587ba2725442f38176aa7897 Mon Sep 17 00:00:00 2001 From: Zack Date: Thu, 25 Jul 2024 08:25:54 -0700 Subject: [PATCH] croc --classic Yes/no prompt default is backwards Fixes #756 --- src/cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/cli.go b/src/cli/cli.go index 476011a..639d096 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -167,7 +167,7 @@ on the host's process list when passed via the command line. On a multi-user system, this could allow other local users to access the shared secret and receive the files instead of the intended recipient. -Do you wish to continue to enable the classic mode? (Y/n) `) +Do you wish to continue to enable the classic mode? (y/N) `) choice := strings.ToLower(utils.GetInput("")) if choice == "y" || choice == "yes" { fmt.Print("\nClassic mode ENABLED.\n\n")