mechevere / picocom

Automatically exported from code.google.com/p/picocom
GNU General Public License v2.0
0 stars 0 forks source link

Receive file with filename uses the send file command #5

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
This issue was closed by revision r20.

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

GoogleCodeExporter commented 9 years ago
Issue 11 has been merged into this issue.

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