From: simon Date: Mon, 15 Nov 1999 10:31:06 +0000 (+0000) Subject: Declare `struct RSAKey' so that its implicit declaration in the X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/4e23b27695fa784ce5d0bc9cc8344430e7b72db7 Declare `struct RSAKey' so that its implicit declaration in the 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 --- diff --git a/putty.h b/putty.h index 83520f27..c2d6362d 100644 --- 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. */