Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / sshnogss.c
index 715d8df..fa4ac65 100644 (file)
@@ -3,8 +3,17 @@
 
 /* For platforms not supporting GSSAPI */
 
-void ssh_gss_init(void)
+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 */