Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'WINDOWS/WINX11.C')
-rw-r--r--WINDOWS/WINX11.C19
1 files changed, 0 insertions, 19 deletions
diff --git a/WINDOWS/WINX11.C b/WINDOWS/WINX11.C
deleted file mode 100644
index 800d8509..00000000
--- a/WINDOWS/WINX11.C
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * 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, Conf *conf)
-{
- char *xauthpath = conf_get_filename(conf, CONF_xauthfile)->path;
- if (xauthpath[0])
- x11_get_auth_from_authfile(disp, xauthpath);
-}
-
-const bool platform_uses_x11_unix_by_default = false;