Changeset 1f03f5e7d63405106b7fc4f34101d04ce61c78d0
- 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
| r3561b9b |
r1f03f5e |
|
| 109 | 109 | char *FileToUrl( char *name, bool *pb_index ); |
|---|
| 110 | 110 | /** This function returns the real path of a file or directory */ |
|---|
| 111 | | char *RealPath( intf_thread_t *p_intf, const char *psz_src ); |
|---|
| | 111 | char *RealPath( const char *psz_src ); |
|---|
| 112 | 112 | |
|---|
| 113 | 113 | /** This command parses the "seek" command for the HTTP interface |
|---|
| rec300ad |
r1f03f5e |
|
| 508 | 508 | char **ppsz_dir_content; |
|---|
| 509 | 509 | int i_dir_content, i; |
|---|
| 510 | | psz_dir = RealPath( p_intf, psz_dir ); |
|---|
| | 510 | psz_dir = RealPath( psz_dir ); |
|---|
| 511 | 511 | |
|---|
| 512 | 512 | #if defined( WIN32 ) |
|---|
| r89cbc19 |
r1f03f5e |
|
| 438 | 438 | { |
|---|
| 439 | 439 | char *psz_src = SSPop( st ); |
|---|
| 440 | | char *psz_dir = RealPath( p_intf, psz_src ); |
|---|
| | 440 | char *psz_dir = RealPath( psz_src ); |
|---|
| 441 | 441 | |
|---|
| 442 | 442 | SSPush( st, psz_dir ); |
|---|
| r3561b9b |
r1f03f5e |
|
| 865 | 865 | * RealPath: parse ../, ~ and path stuff |
|---|
| 866 | 866 | **********************************************************************/ |
|---|
| 867 | | char *RealPath( intf_thread_t *p_intf, const char *psz_src ) |
|---|
| | 867 | char *RealPath( const char *psz_src ) |
|---|
| 868 | 868 | { |
|---|
| 869 | 869 | char *psz_dir; |
|---|