hostkey_method_ssh_dss_init: Value stored to 's' is never read

This commit is contained in:
Daniel Stenberg 2010-04-18 15:31:46 +02:00
parent 7adc23a628
commit d3a0f2932b

View File

@ -268,7 +268,7 @@ hostkey_method_ssh_dss_init(LIBSSH2_SESSION * session,
y_len = _libssh2_ntohu32(s); y_len = _libssh2_ntohu32(s);
s += 4; s += 4;
y = s; y = s;
s += y_len; /* s += y_len; */
_libssh2_dsa_new(&dsactx, p, p_len, q, q_len, g, g_len, y, y_len, NULL, 0); _libssh2_dsa_new(&dsactx, p, p_len, q, q_len, g, g_len, y, y_len, NULL, 0);