https://bugzilla.mindrot.org/show_bug.cgi?id=3599

--- Comment #9 from Shreenidhi Shedi <ssh...@vmware.com> ---
There is a problem in the patch.

PTAL.
```
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 1fd5867..bb59b55 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -789,11 +789,11 @@ main(int argc, char **argv)
                                        fatal("Unsupported hash
algorithm");
                        } else if (strncasecmp(optarg, "ciphers=", 8)
== 0) {
                                ciphers = xstrdup(optarg + 8);
-                               if (!mac_valid(ciphers))
+                               if (!ciphers_valid(ciphers))
                                        fatal("Unsupported ciphers");
                        } else if (strncasecmp(optarg, "macs=", 5) ==
0) {
                                macs = xstrdup(optarg + 5);
-                               if (!ciphers_valid(macs))
+                               if (!mac_valid(macs))
                                        fatal("Unsupported MACs");
                        } else if (strncasecmp(optarg,
                            "kexalgorithms=", 14) == 0) {
```

-- 
You are receiving this mail because:
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
_______________________________________________
openssh-bugs mailing list
openssh-bugs@mindrot.org
https://lists.mindrot.org/mailman/listinfo/openssh-bugs

Reply via email to