From f7b05e4b69f0f17b8658ea30714029644d10b2a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Tue, 30 Aug 2005 15:27:58 +0000 Subject: Better names for directory separators. CVS patchset: 7715 CVS date: 2005/08/30 15:27:58 --- src/xine-engine/load_plugins.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xine-engine') diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index dfec63876..e92f734a1 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.212 2005/08/29 15:28:16 valtri Exp $ + * $Id: load_plugins.c,v 1.213 2005/08/30 15:27:58 valtri Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -1095,14 +1095,14 @@ void _x_scan_plugins (xine_t *this) { str2 = XINE_PLUGINDIR; len = strlen(str1) + strlen(str2) + 2; pluginpath = xine_xmalloc(len); - snprintf(pluginpath, len, "%s" XINE_DIRECTORY_SEPARATOR_STRING "%s", str1, str2); + snprintf(pluginpath, len, "%s" XINE_PATH_SEPARATOR_STRING "%s", str1, str2); } plugindir = xine_xmalloc(strlen(pluginpath)+strlen(homedir)+2); j=0; lenpluginpath = strlen(pluginpath); for (i=0; i <= lenpluginpath; ++i){ switch (pluginpath[i]){ - case XINE_DIRECTORY_SEPARATOR_CHAR: + case XINE_PATH_SEPARATOR_CHAR: case '\0': plugindir[j] = '\0'; collect_plugins(this, plugindir); -- cgit v1.2.3