X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshnogss.c;h=fd8915ba713e675e54cbaee053fd2a619acaa553;hb=406e62f77b3603f3efd2827930513b8c92e83dae;hp=715d8df2d17e0e85346eddb98d5f74e7a6694230;hpb=010f8c42c55cbc5fb00b0900d8f6a3ed73751c38;p=PuTTY.git diff --git a/sshnogss.c b/sshnogss.c index 715d8df2..fd8915ba 100644 --- a/sshnogss.c +++ b/sshnogss.c @@ -3,8 +3,17 @@ /* For platforms not supporting GSSAPI */ -void ssh_gss_init(void) +struct ssh_gss_liblist *ssh_gss_setup(const Config *cfg) { + 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 */