diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2015-01-17 20:13:19 +0000 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2015-01-17 20:13:19 +0000 | 
| commit | eb4ad8d31f7ed4210f24beb8753ecce594b0beef (patch) | |
| tree | f7f9cf04738522a79f874e0e8ce9b915014861fc /protocols/oscar/conn.c | |
| parent | 1065dd4f38c81c83934ba51526471072837700ae (diff) | |
| parent | 664bac38fcdf6889d3ceb29b73a0c3a4e27820ce (diff) | |
Merging random other fixes/cleanups.
Diffstat (limited to 'protocols/oscar/conn.c')
| -rw-r--r-- | protocols/oscar/conn.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/protocols/oscar/conn.c b/protocols/oscar/conn.c index a178761e..16b6ac07 100644 --- a/protocols/oscar/conn.c +++ b/protocols/oscar/conn.c @@ -570,7 +570,7 @@ int aim_conn_completeconnect(aim_session_t *sess, aim_conn_t *conn)  	}   	if (FD_ISSET(conn->fd, &fds) || FD_ISSET(conn->fd, &wfds)) { -		unsigned int len = sizeof(error); +		socklen_t len = sizeof(error);  		if (getsockopt(conn->fd, SOL_SOCKET, SO_ERROR, &error, &len) < 0)  			error = errno; | 
