[Ttssh2-commit] [3472] Secondary DA要求に対して、Psがなしまたは0の時のみ応答するように変更。

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2009年 6月 12日 (金) 21:22:45 JST


Revision: 3472
          http://svn.sourceforge.jp/view?root=ttssh2&view=rev&rev=3472
Author:   doda
Date:     2009-06-12 21:22:45 +0900 (Fri, 12 Jun 2009)

Log Message:
-----------
Secondary DA要求に対して、Psがなしまたは0の時のみ応答するように変更。
応答がエコーバックされた場合、それに反応して応答を返してしまい、ループしていたため。

Modified Paths:
--------------
    trunk/teraterm/teraterm/vtterm.c


-------------- next part --------------
Modified: trunk/teraterm/teraterm/vtterm.c
===================================================================
--- trunk/teraterm/teraterm/vtterm.c	2009-06-12 12:02:06 UTC (rev 3471)
+++ trunk/teraterm/teraterm/vtterm.c	2009-06-12 12:22:45 UTC (rev 3472)
@@ -1844,7 +1844,9 @@
   {
     switch (b) {
       case 'c': /* second terminal report (Secondary DA) */
-	SendCSIstr(">32;10;2c", 9); /* VT382 */
+	if (Param[1] < 1) {
+	  SendCSIstr(">32;10;2c", 9); /* VT382 */
+	}
 	break;
       case 'J':
 	if (Param[1]==3) // IO-8256 terminal



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