Fix a trivial compiler warning
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 15 Mar 2001 12:14:09 +0000 (12:14 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 15 Mar 2001 12:14:09 +0000 (12:14 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@1002 cda61777-01e9-0310-a592-d414129be87e

puttygen.c

index 44fc98f..19245f8 100644 (file)
@@ -325,7 +325,7 @@ static void setupbigedit1(HWND hwnd, int id, struct RSAKey *key) {
 static void setupbigedit2(HWND hwnd, int id, struct ssh2_userkey *key) {
     unsigned char *pub_blob;
     char *buffer, *p;
-    int pub_len, buflen;
+    int pub_len;
     int i;
 
     pub_blob = key->alg->public_blob(key->data, &pub_len);