mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
1e0d8ee4fd
[originally from svn r8980]
19 lines
375 B
C
19 lines
375 B
C
/*
|
|
* winx11.c: fetch local auth data for X forwarding.
|
|
*/
|
|
|
|
#include <ctype.h>
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "putty.h"
|
|
#include "ssh.h"
|
|
|
|
void platform_get_x11_auth(struct X11Display *disp, const Config *cfg)
|
|
{
|
|
if (cfg->xauthfile.path[0])
|
|
x11_get_auth_from_authfile(disp, cfg->xauthfile.path);
|
|
}
|
|
|
|
const int platform_uses_x11_unix_by_default = FALSE;
|