Mercurial > mplayer.hg
changeset 24558:97eaba07ef9d
Fix a few typos
author | reimar |
---|---|
date | Wed, 19 Sep 2007 12:54:10 +0000 |
parents | 32865ce92732 |
children | 7b6a3948f5f2 |
files | stream/tcp.c stream/udp.c |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/tcp.c Tue Sep 18 19:51:22 2007 +0000 +++ b/stream/tcp.c Wed Sep 19 12:54:10 2007 +0000 @@ -193,7 +193,7 @@ tv.tv_usec = 500000; FD_ZERO( &set ); FD_SET( socket_server_fd, &set ); - // When the connection will be made, we will have a writable fd + // When the connection will be made, we will have a writeable fd while((ret = select(socket_server_fd+1, NULL, &set, NULL, &tv)) == 0) { if( ret<0 ) mp_msg(MSGT_NETWORK,MSGL_ERR,MSGTR_MPDEMUX_NW_SelectFailed); else if(ret > 0) break; @@ -201,7 +201,7 @@ if(count > 30) mp_msg(MSGT_NETWORK,MSGL_ERR,MSGTR_MPDEMUX_NW_ConnTimeout); else - mp_msg(MSGT_NETWORK,MSGL_V,"Connection interuppted by user\n"); + mp_msg(MSGT_NETWORK,MSGL_V,"Connection interrupted by user\n"); return TCP_ERROR_TIMEOUT; } count++; @@ -218,7 +218,7 @@ val = 0; ioctlsocket( socket_server_fd, FIONBIO, &val ); #endif - // Check if there were any error + // Check if there were any errors err_len = sizeof(int); ret = getsockopt(socket_server_fd,SOL_SOCKET,SO_ERROR,&err,&err_len); if(ret < 0) {
--- a/stream/udp.c Tue Sep 18 19:51:22 2007 +0000 +++ b/stream/udp.c Wed Sep 19 12:54:10 2007 +0000 @@ -126,7 +126,7 @@ if (!hp) { mp_msg (MSGT_NETWORK, MSGL_ERR, - "Counldn't resolve name: %s\n", url->hostname); + "Could not resolve name: %s\n", url->hostname); closesocket (socket_server_fd); return -1; }