Stomp on some minor warnings

--HG--
extra : convert_revision : 4cbdd6e0a0d8c061075b9ed7609a06c4547f67d3
This commit is contained in:
Matt Johnston 2006-03-08 12:09:02 +00:00
parent bf045a0564
commit 1dc0652444
3 changed files with 1 additions and 3 deletions

View File

@ -181,7 +181,6 @@ void channelio(fd_set *readfds, fd_set *writefds) {
struct Channel *channel;
unsigned int i;
int ret;
/* iterate through all the possible channels */
for (i = 0; i < ses.chansize; i++) {

1
rsa.c
View File

@ -264,7 +264,6 @@ void buf_put_rsa_sign(buffer* buf, rsa_key *key, const unsigned char* data,
DEF_MP_INT(rsa_tmp1);
DEF_MP_INT(rsa_tmp2);
DEF_MP_INT(rsa_tmp3);
unsigned char *tmpbuf;
TRACE(("enter buf_put_rsa_sign"))
dropbear_assert(key != NULL);

View File

@ -47,7 +47,7 @@ static void tcp_acceptor(struct Listener *listener, int sock) {
int fd;
struct sockaddr_storage addr;
int len;
socklen_t len;
char ipstring[NI_MAXHOST], portstring[NI_MAXSERV];
struct TCPListener *tcpinfo = (struct TCPListener*)(listener->typedata);