Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
96ea7e8d
Commit
96ea7e8d
authored
Mar 09, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FileToUrl does not need to be extern
parent
e3c255e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
modules/control/http/http.h
modules/control/http/http.h
+0
-2
modules/control/http/util.c
modules/control/http/util.c
+1
-1
No files found.
modules/control/http/http.h
View file @
96ea7e8d
...
...
@@ -93,8 +93,6 @@ int ParseDirectory( intf_thread_t *p_intf, char *psz_root,
char
*
psz_dir
);
/** This function loads a file into a buffer */
int
FileLoad
(
FILE
*
f
,
char
**
pp_data
,
int
*
pi_data
);
/** This function creates a suitable URL for a filename */
char
*
FileToUrl
(
char
*
name
,
bool
*
pb_index
);
/** This function returns the real path of a file or directory */
char
*
RealPath
(
const
char
*
psz_src
);
...
...
modules/control/http/util.c
View file @
96ea7e8d
...
...
@@ -40,7 +40,7 @@
****************************************************************************/
/* ToUrl: create a good name for an url from filename */
char
*
FileToUrl
(
char
*
name
,
bool
*
pb_index
)
static
char
*
FileToUrl
(
char
*
name
,
bool
*
pb_index
)
{
char
*
url
,
*
p
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment