mirror of
https://github.com/mpv-player/mpv
synced 2025-02-17 04:58:06 +00:00
Fix a few typos
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24578 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
666a245ff9
commit
79918649e2
@ -193,7 +193,7 @@ connect2Server_with_af(char *host, int port, int af,int verb) {
|
||||
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 port, int af,int verb) {
|
||||
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 port, int af,int verb) {
|
||||
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) {
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user