Skip to content

Commit 3bad71b

Browse files
committed
typo
1 parent 145fff3 commit 3bad71b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tcl/tcp_server.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ if {[info exists ::env(TCP_SERVER_PROJECT) ]} {set project "$::env(TCP_SERVER_P
5252
if {[info exists ::env(TCP_SERVER_CONFIG) ]} {set setup "$::env(TCP_SERVER_CONFIG)" } else {set config "NO_CONFIG" }
5353
if {[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
5656
for {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

0 commit comments

Comments
 (0)