Changeset f81778e9a7be3ba1eb45851b2e81a89884857c7c
- Timestamp:
- 10/31/06 18:51:59
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1162317119 +0000
- git-parent:
[bb24808cf580d17948910676038f36293ac1be61]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1162317119 +0000
- Message:
fix Windows build
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbb24808 |
rf81778e |
|
| 109 | 109 | static int Control( access_t *, int, va_list ); |
|---|
| 110 | 110 | |
|---|
| 111 | | static int OpenFile( access_t *, const char * ); |
|---|
| | 111 | static int open_file( access_t *, const char * ); |
|---|
| 112 | 112 | |
|---|
| 113 | 113 | struct access_sys_t |
|---|
| … | … | |
| 214 | 214 | fd = dup (0); |
|---|
| 215 | 215 | else |
|---|
| 216 | | fd = OpenFile (p_access, p_access->psz_path); |
|---|
| | 216 | fd = open_file (p_access, p_access->psz_path); |
|---|
| 217 | 217 | } |
|---|
| 218 | 218 | else |
|---|
| … | … | |
| 225 | 225 | |
|---|
| 226 | 226 | msg_Dbg (p_access, "opening additionnal file `%s'", filename); |
|---|
| 227 | | fd = OpenFile (p_access, filename); |
|---|
| | 227 | fd = open_file (p_access, filename); |
|---|
| 228 | 228 | filename = ptr + 1; |
|---|
| 229 | 229 | } |
|---|
| … | … | |
| 514 | 514 | |
|---|
| 515 | 515 | /***************************************************************************** |
|---|
| 516 | | * OpenFile: Opens a specific file |
|---|
| 517 | | *****************************************************************************/ |
|---|
| 518 | | static int OpenFile (access_t *p_access, const char *psz_name) |
|---|
| | 516 | * open_file: Opens a specific file |
|---|
| | 517 | *****************************************************************************/ |
|---|
| | 518 | static int open_file (access_t *p_access, const char *psz_name) |
|---|
| 519 | 519 | { |
|---|
| 520 | 520 | char *path = expand_path (p_access, psz_name); |
|---|