mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
83fa43497f
This clears up another large pile of clutter at the top level, and in the process, allows me to rename source files to things that don't all have that annoying 'ssh' prefix at the top.
20 lines
370 B
C
20 lines
370 B
C
#include "putty.h"
|
|
#ifndef NO_GSSAPI
|
|
|
|
/* For platforms not supporting GSSAPI */
|
|
|
|
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 */
|