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 'ssh/nogss.c')
-rw-r--r--ssh/nogss.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/ssh/nogss.c b/ssh/nogss.c
new file mode 100644
index 00000000..fa4ac65f
--- /dev/null
+++ b/ssh/nogss.c
@@ -0,0 +1,19 @@
+#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 */