Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / sshnogss.c
CommitLineData
b3d375b2 1#include "putty.h"
2#ifndef NO_GSSAPI
3
4/* For platforms not supporting GSSAPI */
5
4a693cfc 6struct ssh_gss_liblist *ssh_gss_setup(Conf *conf)
b3d375b2 7{
1e00c92b 8 struct ssh_gss_liblist *list = snew(struct ssh_gss_liblist *);
9 list->libraries = NULL;
10 list->nlibraries = 0;
11 return list;
12}
13
14void ssh_gss_cleanup(struct ssh_gss_liblist *list)
15{
16 sfree(list);
b3d375b2 17}
18
19#endif /* NO_GSSAPI */