Commit 2487f4b1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix typo

parent 5112dd3d
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
# define ETIMEDOUT WSAETIMEDOUT # define ETIMEDOUT WSAETIMEDOUT
#endif #endif
static int SocksNegociate( vlc_object_t *, int fd, int i_socks_version, static int SocksNegotiate( vlc_object_t *, int fd, int i_socks_version,
const char *psz_user, const char *psz_passwd ); const char *psz_user, const char *psz_passwd );
static int SocksHandshakeTCP( vlc_object_t *, static int SocksHandshakeTCP( vlc_object_t *,
int fd, int i_socks_version, int fd, int i_socks_version,
...@@ -334,11 +334,11 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait ) ...@@ -334,11 +334,11 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait )
/***************************************************************************** /*****************************************************************************
* SocksNegociate: * SocksNegotiate:
***************************************************************************** *****************************************************************************
* Negociate authentication with a SOCKS server. * Negotiate authentication with a SOCKS server.
*****************************************************************************/ *****************************************************************************/
static int SocksNegociate( vlc_object_t *p_obj, static int SocksNegotiate( vlc_object_t *p_obj,
int fd, int i_socks_version, int fd, int i_socks_version,
const char *psz_socks_user, const char *psz_socks_user,
const char *psz_socks_passwd ) const char *psz_socks_passwd )
...@@ -350,7 +350,7 @@ static int SocksNegociate( vlc_object_t *p_obj, ...@@ -350,7 +350,7 @@ static int SocksNegociate( vlc_object_t *p_obj,
if( i_socks_version != 5 ) if( i_socks_version != 5 )
return VLC_SUCCESS; return VLC_SUCCESS;
/* We negociate authentication */ /* We negotiate authentication */
if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) ) if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) )
b_auth = true; b_auth = true;
...@@ -442,7 +442,7 @@ static int SocksHandshakeTCP( vlc_object_t *p_obj, ...@@ -442,7 +442,7 @@ static int SocksHandshakeTCP( vlc_object_t *p_obj,
} }
if( i_socks_version == 5 && if( i_socks_version == 5 &&
SocksNegociate( p_obj, fd, i_socks_version, SocksNegotiate( p_obj, fd, i_socks_version,
psz_user, psz_passwd ) ) psz_user, psz_passwd ) )
return VLC_EGENERIC; return VLC_EGENERIC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment