[Ttssh2-commit] [6853] getver でのバージョン比較時のメジャーバージョンの係数を 100 から 10000 に変更

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2017年 7月 7日 (金) 22:23:41 JST


Revision: 6853
          http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6853
Author:   doda
Date:     2017-07-07 22:23:41 +0900 (Fri, 07 Jul 2017)
Log Message:
-----------
getver でのバージョン比較時のメジャーバージョンの係数を 100 から 10000 に変更

4.100 == 5.00 にならないようにする為。
そろそろ 4.100 が見えて来たので、忘れないうちにやっておく。

Modified Paths:
--------------
    trunk/teraterm/ttpmacro/ttl.c

-------------- next part --------------
Modified: trunk/teraterm/ttpmacro/ttl.c
===================================================================
--- trunk/teraterm/ttpmacro/ttl.c	2017-07-07 13:23:34 UTC (rev 6852)
+++ trunk/teraterm/ttpmacro/ttl.c	2017-07-07 13:23:41 UTC (rev 6853)
@@ -2842,8 +2842,8 @@
 	SetStrVal(VarId, Str2);
 
 	if (compare == 1) {
-		cur_ver = cur_major * 100 + cur_minor;
-		comp_ver = comp_major * 100 + comp_minor;
+		cur_ver = cur_major * 10000 + cur_minor;
+		comp_ver = comp_major * 10000 + comp_minor;
 
 		if (cur_ver < comp_ver) {
 			SetResult(-1);



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