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;