Declare `struct RSAKey' so that its implicit declaration in the
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 15 Nov 1999 10:31:06 +0000 (10:31 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 15 Nov 1999 10:31:06 +0000 (10:31 +0000)
parameter list of verify_ssh_host_key() does not have scope
restricted to that parameter list. Probably unnecessary but let's
not take chances.

git-svn-id: svn://svn.tartarus.org/sgt/putty@311 cda61777-01e9-0310-a592-d414129be87e

putty.h

diff --git a/putty.h b/putty.h
index 83520f2..c2d6362 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -163,6 +163,8 @@ GLOBAL Config cfg;
 GLOBAL int default_protocol;
 GLOBAL int default_port;
 
+struct RSAKey;                        /* be a little careful of scope */
+
 /*
  * Exports from window.c.
  */