[vlc-commits] [Git][videolan/vlc][master] Replace connexion with connection

Rémi Denis-Courmont (@Courmisch) gitlab at videolan.org
Thu Jul 15 20:01:47 UTC 2021



Rémi Denis-Courmont pushed to branch master at VideoLAN / VLC


Commits:
8045a6cc by Blake Haydon at 2021-07-15T19:39:34+00:00
Replace connexion with connection

- - - - -


4 changed files:

- modules/access/jack.c
- modules/access/mms/mmstu.c
- modules/access/rdp.c
- modules/access/sftp.c


Changes:

=====================================
modules/access/jack.c
=====================================
@@ -164,7 +164,7 @@ static int Open( vlc_object_t *p_this )
     var_Create( p_demux, "jack-input-auto-connect",
         VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
 
-    /* JACK connexions */
+    /* JACK connections */
     /* define name and connect to jack server */
     char p_vlc_client_name[32];
     sprintf( p_vlc_client_name, "vlc-input-%d", getpid() );


=====================================
modules/access/mms/mmstu.c
=====================================
@@ -568,7 +568,7 @@ static int MMSOpen( stream_t  *p_access, vlc_url_t *p_url, int  i_proto )
     free( tmp );
 
     mms_CommandSend( p_access,
-                     0x01,          /* connexion request */
+                     0x01,          /* connection request */
                      0x00000000,    /* flags, FIXME */
                      0x0004000b,    /* ???? */
                      buffer.p_data,
@@ -645,7 +645,7 @@ do \
     free( tmp );
 
     mms_CommandSend( p_access,
-                     0x02,          /* connexion request */
+                     0x02,          /* connection request */
                      0x00000000,    /* flags, FIXME */
                      0xffffffff,    /* ???? */
                      buffer.p_data,


=====================================
modules/access/rdp.c
=====================================
@@ -69,7 +69,7 @@
 #define PASS_LONGTEXT N_("Password that will be used for the connection, " \
         "if no username or password are set in URL.")
 
-#define RDP_ENCRYPT N_("Encrypted connexion")
+#define RDP_ENCRYPT N_("Encrypted connection")
 #define RDP_FPS N_("Frame rate")
 #define RDP_FPS_LONGTEXT N_("Acquisition rate (in fps)")
 
@@ -215,7 +215,7 @@ static bool preConnectHandler( freerdp *p_instance )
     vlcrdp_context_t * p_vlccontext = (vlcrdp_context_t *) p_instance->context;
     demux_sys_t *p_sys = p_vlccontext->p_demux->p_sys;
 
-    /* Configure connexion */
+    /* Configure connection */
     p_instance->settings->SoftwareGdi = true; /* render in buffer */
     p_instance->settings->Fullscreen = true;
     p_instance->settings->ServerHostname = strdup( p_sys->psz_hostname );


=====================================
modules/access/sftp.c
=====================================
@@ -199,7 +199,7 @@ static int SSHSessionInit( stream_t *p_access, const char *psz_host, int i_port
     if( p_sys->i_socket < 0 )
         goto error;
 
-    /* Create the ssh connexion and wait until the server answer */
+    /* Create the ssh connection and wait until the server answer */
     p_sys->ssh_session = libssh2_session_init();
     if( p_sys->ssh_session == NULL )
         goto error;
@@ -275,7 +275,7 @@ static int Open( vlc_object_t* p_this )
     else
         i_port = url.i_port;
 
-    /* Create the ssh connexion and wait until the server answer */
+    /* Create the ssh connection and wait until the server answer */
     if( SSHSessionInit( p_access, url.psz_host, i_port ) != VLC_SUCCESS )
         goto error;
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/8045a6cc9ae49fa69df06a67764f126ebc7d9d99

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/8045a6cc9ae49fa69df06a67764f126ebc7d9d99
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list