64 bit compat

This commit is contained in:
Adam D. Ruppe 2025-02-08 15:45:51 -05:00
parent 01cc666976
commit 34481024a6
1 changed files with 1 additions and 1 deletions

View File

@ -3544,7 +3544,7 @@ version(use_libssh2) {
throw new Exception("fingerprint");
import std.string : toStringz;
if(auto err = libssh2_userauth_publickey_fromfile_ex(session, username.ptr, username.length, toStringz(keyFile ~ ".pub"), toStringz(keyFile), null))
if(auto err = libssh2_userauth_publickey_fromfile_ex(session, username.ptr, cast(int) username.length, toStringz(keyFile ~ ".pub"), toStringz(keyFile), null))
throw new Exception("auth");