Fixed issue #1403: Unable to switch to a new branch anymore
[TortoiseGit.git] / src / TortoisePlink / sshnogss.c
blob27ec760a5f766f835a945d387b914f6dd472463c
1 #include "putty.h"
2 #ifndef NO_GSSAPI
4 /* For platforms not supporting GSSAPI */
6 struct ssh_gss_liblist *ssh_gss_setup(const Config *cfg)
8 struct ssh_gss_liblist *list = snew(struct ssh_gss_liblist *);
9 list->libraries = NULL;
10 list->nlibraries = 0;
11 return list;
14 void ssh_gss_cleanup(struct ssh_gss_liblist *list)
16 sfree(list);
19 #endif /* NO_GSSAPI */