After Update from libssh 0.8.6 to libssh 0.9.4 wildcards in remote path don't work anymore.
stil working:
m_scp = ssh_scp_new(m_ssh_session, SSH_SCP_READ, "path/to/file.txt");
ssh_scp_init(m_scp);
ssh_scp_pull_request(m_scp);
Working in libssh 0.8.6 but not in 0.9.4:
m_scp = ssh_scp_new(m_ssh_session, SSH_SCP_READ, "path/to/*.txt");
ssh_scp_init(m_scp);
ssh_scp_pull_request(m_scp);
Error: No such file or directory
Was this function changed/removed?
Has something else changed, which breaks this feature?