Reinstate a piece of code accidentally removed in r9214, where Windows
[u/mdw/putty] / sshnogss.c
1 #include "putty.h"
2 #ifndef NO_GSSAPI
3
4 /* For platforms not supporting GSSAPI */
5
6 struct ssh_gss_liblist *ssh_gss_setup(Conf *conf)
7 {
8 struct ssh_gss_liblist *list = snew(struct ssh_gss_liblist *);
9 list->libraries = NULL;
10 list->nlibraries = 0;
11 return list;
12 }
13
14 void ssh_gss_cleanup(struct ssh_gss_liblist *list)
15 {
16 sfree(list);
17 }
18
19 #endif /* NO_GSSAPI */