Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
12
Merge Requests
12
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
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
Steve Lhomme
VLC
Commits
d2cf1ff0
Commit
d2cf1ff0
authored
Nov 18, 2017
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: force "http" as module name
(not "connmgr.c")
parent
f82bc9e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/access/http/connmgr.c
modules/access/http/connmgr.c
+2
-2
No files found.
modules/access/http/connmgr.c
View file @
d2cf1ff0
...
...
@@ -39,7 +39,7 @@ void vlc_http_err(void *ctx, const char *fmt, ...)
va_list
ap
;
va_start
(
ap
,
fmt
);
msg_GenericVa
((
vlc_object_t
*
)
ctx
,
VLC_MSG_ERR
,
fmt
,
ap
);
vlc_vaLog
(
ctx
,
VLC_MSG_ERR
,
"http"
,
__FILE__
,
__LINE__
,
__func__
,
fmt
,
ap
);
va_end
(
ap
);
}
...
...
@@ -48,7 +48,7 @@ void vlc_http_dbg(void *ctx, const char *fmt, ...)
va_list
ap
;
va_start
(
ap
,
fmt
);
msg_GenericVa
((
vlc_object_t
*
)
ctx
,
VLC_MSG_DBG
,
fmt
,
ap
);
vlc_vaLog
(
ctx
,
VLC_MSG_DBG
,
"http"
,
__FILE__
,
__LINE__
,
__func__
,
fmt
,
ap
);
va_end
(
ap
);
}
...
...
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