[Ttssh2-commit] [7806] 未使用変数の削除。

Back to archive index
scmno****@osdn***** scmno****@osdn*****
2019年 6月 24日 (月) 17:17:27 JST


Revision: 7806
          https://osdn.net/projects/ttssh2/scm/svn/commits/7806
Author:   yutakapon
Date:     2019-06-24 17:17:27 +0900 (Mon, 24 Jun 2019)
Log Message:
-----------
未使用変数の削除。
チケット #36876 

Ticket Links:
------------
    https://osdn.net/projects/ttssh2/tracker/detail/36876

Modified Paths:
--------------
    branches/openssl_1_1_1_v2/ttssh2/ttxssh/key.c
    branches/openssl_1_1_1_v2/ttssh2/ttxssh/keyfiles.c
    branches/openssl_1_1_1_v2/ttssh2/ttxssh/ttxssh.c

-------------- next part --------------
Modified: branches/openssl_1_1_1_v2/ttssh2/ttxssh/key.c
===================================================================
--- branches/openssl_1_1_1_v2/ttssh2/ttxssh/key.c	2019-06-24 08:15:00 UTC (rev 7805)
+++ branches/openssl_1_1_1_v2/ttssh2/ttxssh/key.c	2019-06-24 08:17:27 UTC (rev 7806)
@@ -1121,7 +1121,7 @@
 	RSA *rsa;
 	DSA *dsa;
 	BIGNUM *e = NULL, *n = NULL;
-	BIGNUM *p, *q, *g, *pub_key, *priv_key;
+	BIGNUM *p, *q, *g, *pub_key;
 
 	k = calloc(1, sizeof(Key));
 	if (k == NULL)

Modified: branches/openssl_1_1_1_v2/ttssh2/ttxssh/keyfiles.c
===================================================================
--- branches/openssl_1_1_1_v2/ttssh2/ttxssh/keyfiles.c	2019-06-24 08:15:00 UTC (rev 7805)
+++ branches/openssl_1_1_1_v2/ttssh2/ttxssh/keyfiles.c	2019-06-24 08:17:27 UTC (rev 7806)
@@ -1108,7 +1108,7 @@
 	{
 		/********* OPENSSL1.1.1 NOTEST *********/
 		char *pubkey_type, *pub, *pri;
-		BIGNUM *e, *n, *d, *dmp1, *dmq1, *iqmp, *p, *q;
+		BIGNUM *e, *n, *d, *iqmp, *p, *q;
 
 		pub = pubkey->buf;
 		pri = prikey->buf;
@@ -1573,7 +1573,7 @@
 	case KEY_RSA:
 	{
 		/********* OPENSSL1.1.1 NOTEST *********/
-		BIGNUM *e, *n, *d, *dmp1, *dmq1, *iqmp, *p, *q;
+		BIGNUM *e, *n, *d, *iqmp, *p, *q;
 
 		result->rsa = RSA_new();
 		if (result->rsa == NULL) {

Modified: branches/openssl_1_1_1_v2/ttssh2/ttxssh/ttxssh.c
===================================================================
--- branches/openssl_1_1_1_v2/ttssh2/ttxssh/ttxssh.c	2019-06-24 08:15:00 UTC (rev 7805)
+++ branches/openssl_1_1_1_v2/ttssh2/ttxssh/ttxssh.c	2019-06-24 08:17:27 UTC (rev 7806)
@@ -4666,7 +4666,7 @@
 				char *uuenc; // uuencode data
 				int uulen;
 				BIGNUM *e, *n;
-				BIGNUM *p, *q, *g, *pub_key, *priv_key;
+				BIGNUM *p, *q, *g, *pub_key;
 				/********* OPENSSL1.1.1 NOTEST *********/
 
 				b = buffer_init();


Ttssh2-commit メーリングリストの案内
Back to archive index