You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mina.apache.org by sebb <se...@gmail.com> on 2013/07/17 01:52:56 UTC

Re: Embedding SSHD in 5 minutes

Thanks for the report; sorry for the delay in fixing it.

Should be OK now.

On 10 June 2013 12:30, elliot <el...@edesix.com> wrote:
> In the example found on this page:
> http://mina.apache.org/sshd-project/embedding_ssh.html
>
> There is a missing round bracket in the example code for setting up the
> shell factory:
> sshd.setShellFactory(new ProcessShellFactory(new String[] { "/bin/sh", "-i",
> "-l" });
> should be
> sshd.setShellFactory(new ProcessShellFactory(new String[] { "/bin/sh", "-i",
> "-l" }));
>
> Cheers,
>
> Elliot