Changeset 2487f4b1224c3ae07686de96b376d14325922e84

Show
Ignore:
Timestamp:
06/08/08 17:40:32 (3 months ago)
Author:
Rémi Denis-Courmont <rdenis@simphalempin.com>
git-committer:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1212939632 +0300
git-parent:

[5112dd3d4b64c1c7a263b2a78f11fa5bd4c216b2]

git-author:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1212936763 +0300
Message:

Fix typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/network/tcp.c

    rd666030 r2487f4b  
    5959#endif 
    6060 
    61 static int SocksNegociate( vlc_object_t *, int fd, int i_socks_version, 
     61static int SocksNegotiate( vlc_object_t *, int fd, int i_socks_version, 
    6262                           const char *psz_user, const char *psz_passwd ); 
    6363static int SocksHandshakeTCP( vlc_object_t *, 
     
    335335 
    336336/***************************************************************************** 
    337  * SocksNegociate: 
     337 * SocksNegotiate: 
    338338 ***************************************************************************** 
    339  * Negociate authentication with a SOCKS server. 
     339 * Negotiate authentication with a SOCKS server. 
    340340 *****************************************************************************/ 
    341 static int SocksNegociate( vlc_object_t *p_obj, 
     341static int SocksNegotiate( vlc_object_t *p_obj, 
    342342                           int fd, int i_socks_version, 
    343343                           const char *psz_socks_user, 
     
    351351        return VLC_SUCCESS; 
    352352 
    353     /* We negociate authentication */ 
     353    /* We negotiate authentication */ 
    354354 
    355355    if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) ) 
     
    443443 
    444444    if( i_socks_version == 5 && 
    445         SocksNegociate( p_obj, fd, i_socks_version, 
     445        SocksNegotiate( p_obj, fd, i_socks_version, 
    446446                        psz_user, psz_passwd ) ) 
    447447        return VLC_EGENERIC;