Changeset 1f03f5e7d63405106b7fc4f34101d04ce61c78d0

Show
Ignore:
Timestamp:
06/28/08 11:56:26 (2 months ago)
Author:
Rémi Denis-Courmont <rdenis@simphalempin.com>
git-committer:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1214646986 +0300
git-parent:

[e9cf1f8754ed0c8fe702b9b4108c341f9d98c148]

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

Remove unused parameter

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/control/http/http.h

    r3561b9b r1f03f5e  
    109109char *FileToUrl( char *name, bool *pb_index ); 
    110110/** This function returns the real path of a file or directory */ 
    111 char *RealPath( intf_thread_t *p_intf, const char *psz_src ); 
     111char *RealPath( const char *psz_src ); 
    112112 
    113113/** This command parses the "seek" command for the HTTP interface 
  • modules/control/http/mvar.c

    rec300ad r1f03f5e  
    508508    char        **ppsz_dir_content; 
    509509    int           i_dir_content, i; 
    510     psz_dir = RealPath( p_intf, psz_dir ); 
     510    psz_dir = RealPath( psz_dir ); 
    511511 
    512512#if defined( WIN32 ) 
  • modules/control/http/rpn.c

    r89cbc19 r1f03f5e  
    438438        { 
    439439            char *psz_src = SSPop( st ); 
    440             char *psz_dir = RealPath( p_intf, psz_src ); 
     440            char *psz_dir = RealPath( psz_src ); 
    441441 
    442442            SSPush( st, psz_dir ); 
  • modules/control/http/util.c

    r3561b9b r1f03f5e  
    865865 * RealPath: parse ../, ~ and path stuff 
    866866 **********************************************************************/ 
    867 char *RealPath( intf_thread_t *p_intf, const char *psz_src ) 
     867char *RealPath( const char *psz_src ) 
    868868{ 
    869869    char *psz_dir;