We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TTSSHの「パスワード変更」ダイアログは、「新パスワード」と「新パスワード確認」が一致することをチェックしていますが、 一致しなくても処理が進む場合があります。
例として、 新パスワードに「11111111」を、 新パスワード確認に「11111112」を与えると、 パスワードが一致していませんが処理が進みます。
手元にWindowsの開発環境が無いので確認できないのですが、 ttssh2/ttxssh/ssh.c の 7535行目
if (strcmp(new_passwd, retype_passwd) == 1) {
は、おそらく
if (strcmp(new_passwd, retype_passwd) != 0) {
が正しいのではないでしょうか?
The text was updated successfully, but these errors were encountered:
2つのパスワードが一致しているかチェック判定修正 #401
bfbc239
No branches or pull requests
TTSSHの「パスワード変更」ダイアログは、「新パスワード」と「新パスワード確認」が一致することをチェックしていますが、
一致しなくても処理が進む場合があります。
例として、
新パスワードに「11111111」を、
新パスワード確認に「11111112」を与えると、
パスワードが一致していませんが処理が進みます。
手元にWindowsの開発環境が無いので確認できないのですが、
ttssh2/ttxssh/ssh.c の 7535行目
は、おそらく
が正しいのではないでしょうか?
The text was updated successfully, but these errors were encountered: