Silcen compiler warnings.
This commit is contained in:
parent
5ac67d1268
commit
ba57d5ae3c
@ -123,7 +123,7 @@ packet_queue_listener(LIBSSH2_SESSION * session, unsigned char *data,
|
|||||||
(listen->host, listen_state->host,
|
(listen->host, listen_state->host,
|
||||||
listen_state->host_len) == 0)) {
|
listen_state->host_len) == 0)) {
|
||||||
/* This is our listener */
|
/* This is our listener */
|
||||||
LIBSSH2_CHANNEL *channel, *last_queued = listen->queue;
|
LIBSSH2_CHANNEL *channel = NULL, *last_queued = listen->queue;
|
||||||
|
|
||||||
last_queued = listen->queue;
|
last_queued = listen->queue;
|
||||||
if (listen_state->state == libssh2_NB_state_allocated) {
|
if (listen_state->state == libssh2_NB_state_allocated) {
|
||||||
@ -288,7 +288,7 @@ packet_x11_open(LIBSSH2_SESSION * session, unsigned char *data,
|
|||||||
/* 17 = packet_type(1) + channel(4) + reason(4) + descr(4) + lang(4) */
|
/* 17 = packet_type(1) + channel(4) + reason(4) + descr(4) + lang(4) */
|
||||||
unsigned long packet_len = 17 + (sizeof(X11FwdUnAvil) - 1);
|
unsigned long packet_len = 17 + (sizeof(X11FwdUnAvil) - 1);
|
||||||
unsigned char *p;
|
unsigned char *p;
|
||||||
LIBSSH2_CHANNEL *channel;
|
LIBSSH2_CHANNEL *channel = NULL;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
(void) datalen;
|
(void) datalen;
|
||||||
|
@ -263,7 +263,7 @@ fullpacket(LIBSSH2_SESSION * session, int encrypted /* 1 or 0 */ )
|
|||||||
libssh2pack_t
|
libssh2pack_t
|
||||||
_libssh2_transport_read(LIBSSH2_SESSION * session)
|
_libssh2_transport_read(LIBSSH2_SESSION * session)
|
||||||
{
|
{
|
||||||
libssh2pack_t rc;
|
libssh2pack_t rc = -1;
|
||||||
struct transportpacket *p = &session->packet;
|
struct transportpacket *p = &session->packet;
|
||||||
int remainbuf;
|
int remainbuf;
|
||||||
int remainpack;
|
int remainpack;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user