Bugzilla – Attachment 2635 Details for
Bug 1993
ssh tries to add keys to ~/.ssh/known_hosts though StrictHostKeyChecking yes is set
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Remove length limits on know host file name in log messages
ssh-host-warning-truncat.patch (text/plain), 950 bytes, created by
Darren Tucker
on 2015-05-28 15:13:31 AEST
(
hide
)
Description:
Remove length limits on know host file name in log messages
Filename:
MIME Type:
Creator:
Darren Tucker
Created:
2015-05-28 15:13:31 AEST
Size:
950 bytes
patch
obsolete
>diff --git a/sshconnect.c b/sshconnect.c >index f5b6973..102e1fb 100644 >--- a/sshconnect.c >+++ b/sshconnect.c >@@ -912,8 +912,7 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, > host_key, options.hash_known_hosts)) > logit("Failed to add the %s host key for IP " > "address '%.128s' to the list of known " >- "hosts (%.30s).", type, ip, >- user_hostfiles[0]); >+ "hosts (%s).", type, ip, user_hostfiles[0]); > else > logit("Warning: Permanently added the %s host " > "key for IP address '%.128s' to the list " >@@ -1024,7 +1023,7 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, > > if (!r) > logit("Failed to add the host to the list of known " >- "hosts (%.500s).", user_hostfiles[0]); >+ "hosts (%s).", user_hostfiles[0]); > else > logit("Warning: Permanently added '%.200s' (%s) to the " > "list of known hosts.", hostp, type);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1993
:
2635
|
2638
|
2641