]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix a trivial compiler warning
authorSimon Tatham <anakin@pobox.com>
Thu, 15 Mar 2001 12:14:09 +0000 (12:14 +0000)
committerSimon Tatham <anakin@pobox.com>
Thu, 15 Mar 2001 12:14:09 +0000 (12:14 +0000)
[originally from svn r1002]

puttygen.c

index 44fc98fa46bca79f50dd143655ac6837c78d9692..19245f8084dd976c87fd7925cfb3868187e19837 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);