summaryrefslogtreecommitdiff
path: root/src/xine-engine/load_plugins.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-08-30 15:27:58 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-08-30 15:27:58 +0000
commitf7b05e4b69f0f17b8658ea30714029644d10b2a5 (patch)
treed95ad38bce27d1ea9686a78084484e1fcf2f0d94 /src/xine-engine/load_plugins.c
parentb32c104db2c849eec6d63331bb3688664bdef9eb (diff)
downloadxine-lib-f7b05e4b69f0f17b8658ea30714029644d10b2a5.tar.gz
xine-lib-f7b05e4b69f0f17b8658ea30714029644d10b2a5.tar.bz2
Better names for directory separators.
CVS patchset: 7715 CVS date: 2005/08/30 15:27:58
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r--src/xine-engine/load_plugins.c6
1 files changed, 3 insertions, 3 deletions
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);