search for: wantbits

Displaying 2 results from an estimated 2 matches for "wantbits".

Did you mean: intbits
2015 Jul 01
4
[PATCH 1/1] update error messages about moduli and primes files
...es can be used, so mention both in error messages. Signed-off-by: Christian Hesse <mail at eworm.de> --- dh.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dh.c b/dh.c index 4c639ac..450f5c4 100644 --- a/dh.c +++ b/dh.c @@ -153,8 +153,8 @@ choose_dh(int min, int wantbits, int max) if ((f = fopen(_PATH_DH_MODULI, "r")) == NULL && (f = fopen(_PATH_DH_PRIMES, "r")) == NULL) { - logit("WARNING: %s does not exist, using fixed modulus", - _PATH_DH_MODULI); + logit("WARNING: neither %s nor %s exists, using fixed...
2003 Oct 08
4
OS/390 openssh
...08:22:01 2003 @@ -62,7 +62,7 @@ buffer_put_char(&b, SSH2_MSG_KEXINIT); buffer_append(&b, skexinit, skexinitlen); - buffer_put_string(&b, serverhostkeyblob, sbloblen); + buffer_put_binary(&b, serverhostkeyblob, sbloblen); if (min == -1 || max == -1) buffer_put_int(&b, wantbits); else { diff -bur openssh-3.7.1p2.orig/kexgexc.c openssh-3.7.1p2/kexgexc.c --- openssh-3.7.1p2.orig/kexgexc.c Mon Feb 24 02:06:32 2003 +++ openssh-3.7.1p2/kexgexc.c Tue Oct 7 08:22:01 2003 @@ -108,7 +108,7 @@ packet_read_expect(SSH2_MSG_KEX_DH_GEX_REPLY); /* key, cert */ - server_host_key...