@@ -141,7 +141,7 @@ func Run() (err error) {
141141 if classicInsecureMode {
142142 // classic mode not enabled
143143 fmt .Print (`Classic mode is currently ENABLED.
144-
144+
145145Disabling this mode will prevent the shared secret from being visible
146146on the host's process list when passed via the command line. On a
147147multi-user system, this will help ensure that other local users cannot
@@ -166,7 +166,7 @@ Do you wish to continue to DISABLE the classic mode? (y/N) `)
166166 // enable classic mode
167167 // touch the file
168168 fmt .Print (`Classic mode is currently DISABLED.
169-
169+
170170Please note that enabling this mode will make the shared secret visible
171171on the host's process list when passed via the command line. On a
172172multi-user system, this could allow other local users to access the
@@ -404,15 +404,15 @@ func send(c *cli.Context) (err error) {
404404 if (! (runtime .GOOS == "windows" ) && c .IsSet ("code" )) || os .Getenv ("CROC_SECRET" ) != "" {
405405 crocOptions .SharedSecret = os .Getenv ("CROC_SECRET" )
406406 if crocOptions .SharedSecret == "" {
407- fmt .Printf (`On UNIX systems, to send with a custom code phrase,
407+ fmt .Printf (`On UNIX systems, to send with a custom code phrase,
408408you need to set the environmental variable CROC_SECRET:
409409
410410 CROC_SECRET=**** croc send file.txt
411411
412412Or you can have the code phrase automatically generated:
413413
414414 croc send file.txt
415-
415+
416416Or you can go back to the classic croc behavior by enabling classic mode:
417417
418418 croc --classic
@@ -660,15 +660,15 @@ func receive(c *cli.Context) (err error) {
660660 } else if ! (runtime .GOOS == "windows" ) && crocOptions .SharedSecret != "" && ! classicInsecureMode {
661661 crocOptions .SharedSecret = os .Getenv ("CROC_SECRET" )
662662 if crocOptions .SharedSecret == "" {
663- fmt .Printf (`On UNIX systems, to receive with croc you either need
663+ fmt .Printf (`On UNIX systems, to receive with croc you either need
664664to set a code phrase using your environmental variables:
665-
666- CROC_SECRET=**** croc
665+
666+ CROC_SECRET=**** croc
667667
668668Or you can specify the code phrase when you run croc without
669669declaring the secret on the command line:
670670
671- croc
671+ croc
672672 Enter receive code: ****
673673
674674Or you can go back to the classic croc behavior by enabling classic mode:
0 commit comments