]> git.sesse.net Git - vlc/commitdiff
Cosmetic fixes
authorRémi Denis-Courmont <rem@videolan.org>
Sat, 9 Sep 2006 08:20:18 +0000 (08:20 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sat, 9 Sep 2006 08:20:18 +0000 (08:20 +0000)
modules/access/ftp.c

index d7151951164139ea4190d4436d8244f9d3ccea51..2da628a82ae883c05a6b66417e339f9729fe94bc 100644 (file)
@@ -85,7 +85,7 @@ struct access_sys_t
 
     int        fd_cmd;
     int        fd_data;
-    
+
     char       sz_epsv_ip[NI_MAXNUMERICHOST];
 };
 
@@ -127,7 +127,7 @@ static int Connect( access_t *p_access, access_sys_t *p_sys )
     }
 
     msg_Dbg( p_access, "connection accepted (%d)", i_answer );
-    
+
     if( p_sys->url.psz_username && *p_sys->url.psz_username )
         psz = strdup( p_sys->url.psz_username );
     else
@@ -150,7 +150,7 @@ static int Connect( access_t *p_access, access_sys_t *p_sys )
             msg_Dbg( p_access, "password needed" );
             if( p_sys->url.psz_password && *p_sys->url.psz_password )
                 psz = strdup( p_sys->url.psz_password );
-           else
+            else
                 psz = var_CreateGetString( p_access, "ftp-pwd" );
 
             if( ftp_SendCommand( p_access, "PASS %s", psz ) < 0 ||