summaryrefslogtreecommitdiffhomepage
path: root/cli-chansession.c
diff options
context:
space:
mode:
authorCatalin Patulea <cat@vv.carleton.ca>2013-12-03 00:06:35 +0800
committerCatalin Patulea <cat@vv.carleton.ca>2013-12-03 00:06:35 +0800
commit441facc6e0e781c6297d382645a0db6165f82baf (patch)
tree6d6a4513d372372c1faca22d5f6499d870902247 /cli-chansession.c
parent998d6cdfc48bbe9101b87457edbc0e3f2fe36fe0 (diff)
Fix TRACEs of cli_send_netcat_request
Diffstat (limited to 'cli-chansession.c')
-rw-r--r--cli-chansession.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli-chansession.c b/cli-chansession.c
index c3e2f81..fa97a6a 100644
--- a/cli-chansession.c
+++ b/cli-chansession.c
@@ -400,6 +400,7 @@ void cli_send_netcat_request() {
const unsigned char* source_host = "127.0.0.1";
const int source_port = 22;
+ TRACE(("enter cli_send_netcat_request"))
cli_opts.wantpty = 0;
if (send_msg_channel_open_init(STDIN_FILENO, &cli_chan_netcat)
@@ -416,7 +417,7 @@ void cli_send_netcat_request() {
buf_putint(ses.writepayload, source_port);
encrypt_packet();
- TRACE(("leave cli_send_chansess_request"))
+ TRACE(("leave cli_send_netcat_request"))
}
#endif