[MPlayer-cvslog] r24578 - in trunk/stream: tcp.c udp.c
reimar
subversion at mplayerhq.hu
Wed Sep 19 14:54:10 CEST 2007
Author: reimar
Date: Wed Sep 19 14:54:10 2007
New Revision: 24578
Log:
Fix a few typos
Modified:
trunk/stream/tcp.c
trunk/stream/udp.c
Modified: trunk/stream/tcp.c
==============================================================================
--- trunk/stream/tcp.c (original)
+++ trunk/stream/tcp.c Wed Sep 19 14:54:10 2007
@@ -193,7 +193,7 @@ connect2Server_with_af(char *host, int p
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 @@ connect2Server_with_af(char *host, int p
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 @@ connect2Server_with_af(char *host, int p
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) {
Modified: trunk/stream/udp.c
==============================================================================
--- trunk/stream/udp.c (original)
+++ trunk/stream/udp.c Wed Sep 19 14:54:10 2007
@@ -126,7 +126,7 @@ udp_open_socket (URL_t *url)
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;
}
More information about the MPlayer-cvslog
mailing list