search for: ssh_error

Displaying 3 results from an estimated 3 matches for "ssh_error".

Did you mean: sh_error
2013 Oct 31
0
Older ssh clients can't connect to sshd (6.3p1) built using FIPS object module 2.0.5
...to openssh suite v6.3p1 and successfully generated openssh suite binaries. PFA our draft of FIPS patch for openssh: openssh-6.3p1-fips-patch (Not reviewed by OpenSSL Software Foundation). sshd built this way has connection issues with older ssh clients - even in FIPS off mode. PFA error logs (ssh_error.log) ssh client just blocks at the following log: >debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP openssh client v6.3.p1 can successfully connect to this server - but some of older clients can't. Any pointers? Thanks, Manish Jagtap -------------- next part ------------...
2016 Apr 04
2
[PATCH 1/2] Use 'error' function consistently throughout.
.../ssh.c index 6aeafd7..6ddfcb2 100644 --- a/p2v/ssh.c +++ b/p2v/ssh.c @@ -45,6 +45,7 @@ #include <inttypes.h> #include <unistd.h> #include <errno.h> +#include <error.h> #include <locale.h> #include <assert.h> #include <libintl.h> @@ -78,11 +79,9 @@ set_ssh_error (const char *fs, ...) len = vasprintf (&msg, fs, args); va_end (args); - if (len < 0) { - perror ("vasprintf"); - fprintf (stderr, "original error format string: %s\n", fs); - exit (EXIT_FAILURE); - } + if (len < 0) + error (EXIT_FAILURE, errno,...
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am