summaryrefslogtreecommitdiffstats
path: root/libmenu
diff options
context:
space:
mode:
authorkomh <komh@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-19 09:14:01 +0000
committerkomh <komh@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-19 09:14:01 +0000
commit316e05b877ac8b58afebaae87ada374b73d20f47 (patch)
tree587adf18fd60a8839222fef428336798b76b93d5 /libmenu
parent9216c6376a1e34224344a76dc7da3914e362590b (diff)
downloadmpv-316e05b877ac8b58afebaae87ada374b73d20f47.tar.bz2
mpv-316e05b877ac8b58afebaae87ada374b73d20f47.tar.xz
Replace platform preprocessor check by HAVE_DOS_PATHS.
This is both more elegant and more portable. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30650 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmenu')
-rw-r--r--libmenu/menu_filesel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmenu/menu_filesel.c b/libmenu/menu_filesel.c
index 1321702945..e6978d7fc2 100644
--- a/libmenu/menu_filesel.c
+++ b/libmenu/menu_filesel.c
@@ -147,14 +147,14 @@ static int mylstat(char *dir, char *file,struct stat* st) {
char *slash;
l -= 3;
strcpy(s, dir);
-#if defined(__MINGW32__) || defined(__CYGWIN__)
+#if HAVE_DOS_PATHS
if (s[l] == '/' || s[l] == '\\')
#else
if (s[l] == '/')
#endif
s[l] = '\0';
slash = strrchr(s, '/');
-#if defined(__MINGW32__) || defined(__CYGWIN__)
+#if HAVE_DOS_PATHS
if (!slash)
slash = strrchr(s,'\\');
#endif
@@ -356,7 +356,7 @@ static void read_cmd(menu_t* menu,int cmd) {
if(l <= 1) break;
mpriv->dir[l-1] = '\0';
slash = strrchr(mpriv->dir,'/');
-#if defined(__MINGW32__) || defined(__CYGWIN__)
+#if HAVE_DOS_PATHS
if (!slash)
slash = strrchr(mpriv->dir,'\\');
#endif
@@ -456,7 +456,7 @@ static int open_fs(menu_t* menu, char* args) {
char *slash = NULL;
if (filename && !strstr(filename, "://") && (path=realpath(filename, b))) {
slash = strrchr(path, '/');
-#if defined(__MINGW32__) || defined(__CYGWIN__)
+#if HAVE_DOS_PATHS
// FIXME: Do we need and can convert all '\\' in path to '/' on win32?
if (!slash)
slash = strrchr(path, '\\');