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 'sshnogss.c')
-rw-r--r--sshnogss.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/sshnogss.c b/sshnogss.c
deleted file mode 100644
index fa4ac65f..00000000
--- a/sshnogss.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "putty.h"
-#ifndef NO_GSSAPI
-
-/* For platforms not supporting GSSAPI */
-
-struct ssh_gss_liblist *ssh_gss_setup(Conf *conf)
-{
- struct ssh_gss_liblist *list = snew(struct ssh_gss_liblist *);
- list->libraries = NULL;
- list->nlibraries = 0;
- return list;
-}
-
-void ssh_gss_cleanup(struct ssh_gss_liblist *list)
-{
- sfree(list);
-}
-
-#endif /* NO_GSSAPI */