[vlc-commits] http: force "http" as module name

Rémi Denis-Courmont git at videolan.org
Sat Nov 18 20:43:10 CET 2017


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Nov 18 21:11:11 2017 +0200| [d2cf1ff065c490a3f61847b156a65b2add42941c] | committer: Rémi Denis-Courmont

http: force "http" as module name

(not "connmgr.c")

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d2cf1ff065c490a3f61847b156a65b2add42941c
---

 modules/access/http/connmgr.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/access/http/connmgr.c b/modules/access/http/connmgr.c
index 6a1f0f0138..11229f8d36 100644
--- a/modules/access/http/connmgr.c
+++ b/modules/access/http/connmgr.c
@@ -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);
 }
 



More information about the vlc-commits mailing list