From 891d7b1955b0dd21ab2a84d9e0ee023a3cf25ba7 Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Tue, 12 Aug 2008 14:12:04 +0200 Subject: [PATCH] http intf on Windows: look for the right folder --- modules/control/http/http.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/modules/control/http/http.c b/modules/control/http/http.c index abb3eb5..98f243d 100644 --- a/modules/control/http/http.c +++ b/modules/control/http/http.c @@ -264,8 +264,13 @@ static int Open( vlc_object_t *p_this ) snprintf (buf, sizeof (buf), "%s/http", data_path); const char const* ppsz_paths[] = { +#ifndef WIN32 "share/http", "../share/http", +#else + "http", + "..\\http", +#endif buf, NULL }; -- 1.5.6.4