mechevere/picocom

Receive file with filename uses the send file command

Closed this issue · 3 comments

What steps will reproduce the problem?
1. C-ar to receive a file
2. Enter a file name

What is the expected output? What do you see instead?
Expect the receive command to be executed with the filename specified.
Instead, the send command is executed with the filename specified.

What version of the product are you using? On what operating system?
1.6 Mac OS 10.6.4

Please provide any additional information below.

There appears to be a copy / paste error on line 815 of picocom.c :

{{{
run_cmd(tty_fd, opts.send_cmd, fname, NULL);
}}}

should be

{{{
run_cmd(tty_fd, opts.receive_cmd, fname, NULL);
}}}






Original issue reported on code.google.com by gkr...@gmail.com on 24 Jun 2010 at 4:48

[deleted comment]
This issue was closed by revision r20.

Original comment by nick.pat...@gmail.com on 24 Jun 2010 at 7:56

Issue 11 has been merged into this issue.

Original comment by nick.pat...@gmail.com on 21 Feb 2012 at 5:22