svnno****@sourc*****
svnno****@sourc*****
2010年 12月 19日 (日) 21:21:30 JST
Revision: 4233 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4233 Author: doda Date: 2010-12-19 21:21:29 +0900 (Sun, 19 Dec 2010) Log Message: ----------- typo fix. Modified Paths: -------------- trunk/ttssh2/ttxssh/fwd.c trunk/ttssh2/ttxssh/fwd.h trunk/ttssh2/ttxssh/ssh.c -------------- next part -------------- Modified: trunk/ttssh2/ttxssh/fwd.c =================================================================== --- trunk/ttssh2/ttxssh/fwd.c 2010-12-19 12:03:05 UTC (rev 4232) +++ trunk/ttssh2/ttxssh/fwd.c 2010-12-19 12:21:29 UTC (rev 4233) @@ -1915,7 +1915,7 @@ } } -BOOL FWD_agent_forword_confirm(PTInstVar pvar) +BOOL FWD_agent_forward_confirm(PTInstVar pvar) { HWND cur_active = GetActiveWindow(); pvar->session_settings.ForwardAgentConfirm = 1; Modified: trunk/ttssh2/ttxssh/fwd.h =================================================================== --- trunk/ttssh2/ttxssh/fwd.h 2010-12-19 12:03:05 UTC (rev 4232) +++ trunk/ttssh2/ttxssh/fwd.h 2010-12-19 12:21:29 UTC (rev 4233) @@ -168,6 +168,6 @@ void FWD_free_channel(PTInstVar pvar, uint32 local_channel_num); int FWD_check_local_channel_num(PTInstVar pvar, int local_num); int FWD_agent_open(PTInstVar pvar, uint32 remote_channel_num); -BOOL FWD_agent_forword_confirm(PTInstVar pvar); +BOOL FWD_agent_forward_confirm(PTInstVar pvar); #endif Modified: trunk/ttssh2/ttxssh/ssh.c =================================================================== --- trunk/ttssh2/ttxssh/ssh.c 2010-12-19 12:03:05 UTC (rev 4232) +++ trunk/ttssh2/ttxssh/ssh.c 2010-12-19 12:21:29 UTC (rev 4233) @@ -1961,7 +1961,7 @@ int remote_id = get_payload_uint32(pvar, 0); int local_id; - if (pvar->agentfwd_enable && FWD_agent_forword_confirm(pvar)) { + if (pvar->agentfwd_enable && FWD_agent_forward_confirm(pvar)) { local_id = FWD_agent_open(pvar, remote_id); if (local_id == -1) { SSH_fail_channel_open(pvar, remote_id); @@ -8914,7 +8914,7 @@ c->remote_maxpacket = remote_maxpacket; } else if (strcmp(ctype, "auth-****@opens*****") == 0) { // agent forwarding - if (pvar->agentfwd_enable && FWD_agent_forword_confirm(pvar)) { + if (pvar->agentfwd_enable && FWD_agent_forward_confirm(pvar)) { c = ssh2_channel_new(CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, TYPE_AGENT, chan_num); if (c == NULL) { UTIL_get_lang_msg("MSG_SSH_NO_FREE_CHANNEL", pvar,