File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ if {[info exists ::env(TCP_SERVER_PROJECT) ]} {set project "$::env(TCP_SERVER_P
5252if {[info exists ::env(TCP_SERVER_CONFIG) ]} {set setup " $::env(TCP_SERVER_CONFIG) " } else {set config " NO_CONFIG" }
5353if {[info exists ::env(TCP_SERVER_VERBOSE) ]} {set verbose " $::env(TCP_SERVER_VERBOSE) " } else {set verbose 0 }
5454
55- # Parse command line arguments
55+ # # Parse command line arguments
5656for {set i 0} {$i < [llength $argv ]} {incr i} {
5757 set arg [lindex $argv $i ]
5858 switch -- $arg {
@@ -104,7 +104,7 @@ proc handle_request {sock addr port} {
104104 fconfigure $sock -translation binary -encoding binary
105105 set msg [read $sock ]
106106
107- # Write the encrypted message to a temporary file
107+ # # Write the encrypted message to a temporary file
108108 set tmp_msg [exec mktemp /tmp/gpg.XXXXX]
109109 set fh [open $tmp_msg " w" ]
110110 fconfigure $fh -translation binary -encoding binary
You can’t perform that action at this time.
0 commit comments