X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/7bb18feb92815eec1c54b882ce5ab64c72c9580d..4a693cfc5c3ee0e639bbee0215345e921715ab04:/unix/uxsftp.c diff --git a/unix/uxsftp.c b/unix/uxsftp.c index fd6b528b..3170ecf3 100644 --- a/unix/uxsftp.c +++ b/unix/uxsftp.c @@ -18,6 +18,7 @@ #endif #include "putty.h" +#include "ssh.h" #include "psftp.h" #include "int64.h" @@ -33,11 +34,11 @@ char *x_get_default(const char *key) return NULL; /* this is a stub */ } -void platform_get_x11_auth(char *display, int *protocol, - unsigned char *data, int *datalen) +void platform_get_x11_auth(struct X11Display *display, Conf *conf) { /* Do nothing, therefore no auth. */ } +const int platform_uses_x11_unix_by_default = TRUE; /* * Default settings that are specific to PSFTP. @@ -201,6 +202,7 @@ WFile *open_existing_wfile(char *name, uint64 *size) ret = snew(WFile); ret->fd = fd; + ret->name = dupstr(name); if (size) { struct stat statbuf;