From 91131fd1978aac8aa75c1403890187013bb5d93d Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Wed, 2 Mar 2011 00:18:03 +0000 Subject: [PATCH] Fix probably-harmless type mismatch in nogss.c (and #include "putty.h" to stop it happening again; this was spotted by GCC's "-flto" option). [originally from svn r9114] --- nogss.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nogss.c b/nogss.c index 57a1b372..adb1e224 100644 --- a/nogss.c +++ b/nogss.c @@ -4,7 +4,8 @@ * use for them. */ +#include "putty.h" + const int ngsslibs = 0; const char *const gsslibnames[1] = { "dummy" }; -const char *const gsslibkeywords[1] = { "dummy" }; - +const struct keyval gsslibkeywords[1] = { { "dummy", 0 } };