From: simon Date: Tue, 25 Nov 2008 18:54:05 +0000 (+0000) Subject: Have wingss.c include by way of putty.h rather than X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/a638600ce7eefdddb7d3d1a8f9966397a1155dc6 Have wingss.c include by way of putty.h rather than directly. Fixes a build failure involving name clashes between winsock2.h and winsock.h, which had somehow managed to get included in succession. git-svn-id: svn://svn.tartarus.org/sgt/putty@8332 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/windows/wingss.c b/windows/wingss.c index 222b34fa..773e6609 100644 --- a/windows/wingss.c +++ b/windows/wingss.c @@ -1,8 +1,10 @@ #ifndef NO_GSSAPI -#include +#include "putty.h" + #define SECURITY_WIN32 #include + #include "sshgss.h" #include "misc.h"