Skip Menu |

This queue is for tickets about the Net-SCP-Expect CPAN distribution.

Report information
The Basics
Id: 22907
Status: resolved
Priority: 0/
Queue: Net-SCP-Expect

People
Owner: RYBSKEJ [...] cpan.org
Requestors: awkay69 [...] yahoo.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.12
Fixed in: 0.13



Subject: Some options require trailing space
The idenity file and "extra options" parameters are not joined together properly. See line 168 of Expect.pm: $flags .= "-s $subsystem" if $subsystem; $flags .= "-o $option" if $option; $flags .= "-i $identity_file" if $identity_file; All three of these should be: $flags .= "-s $subsystem " if $subsystem; $flags .= "-o $option " if $option; $flags .= "-i $identity_file " if $identity_file;
Missing spaces included as recommended. Changed included in 0.13 release.