[Ttssh2-commit] [4371] デフォルトだと圧縮方式がすべて無効になっていた為、オーダーを修正。

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 3月 7日 (月) 14:20:12 JST


Revision: 4371
          http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4371
Author:   doda
Date:     2011-03-07 14:20:12 +0900 (Mon, 07 Mar 2011)

Log Message:
-----------
デフォルトだと圧縮方式がすべて無効になっていた為、オーダーを修正。

Modified Paths:
--------------
    trunk/installer/release/TERATERM.INI
    trunk/ttssh2/ttxssh/ttxssh.c


-------------- next part --------------
Modified: trunk/installer/release/TERATERM.INI
===================================================================
--- trunk/installer/release/TERATERM.INI	2011-03-07 04:01:28 UTC (rev 4370)
+++ trunk/installer/release/TERATERM.INI	2011-03-07 05:20:12 UTC (rev 4371)
@@ -651,7 +651,7 @@
 ;  1...zlib
 ;  2...z****@opens*****(Delayed Compression)
 ;  0...below this line are disabled.
-CompOrder=012
+CompOrder=210
 ; packet compression level (0=none)
 Compression=0
 

Modified: trunk/ttssh2/ttxssh/ttxssh.c
===================================================================
--- trunk/ttssh2/ttxssh/ttxssh.c	2011-03-07 04:01:28 UTC (rev 4370)
+++ trunk/ttssh2/ttxssh/ttxssh.c	2011-03-07 05:20:12 UTC (rev 4371)
@@ -334,9 +334,9 @@
 static void normalize_comp_order(char FAR * buf)
 {
 	static char default_strings[] = {
+		COMP_DELAYED,
+		COMP_ZLIB,
 		COMP_NONE,
-		COMP_ZLIB,
-		COMP_DELAYED,
 	};
 
 	normalize_generic_order(buf, default_strings, NUM_ELEM(default_strings));



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