summaryrefslogtreecommitdiff
path: root/gdb/source.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-06-06 10:27:59 +0000
committerEli Zaretskii <eliz@gnu.org>2001-06-06 10:27:59 +0000
commitedd66f8ac3a96c479e0301a672987556d30923da (patch)
tree9e4c485800282cb5c3eb70951d95f22715239a62 /gdb/source.c
parent9572c136d6541fd0ea6e37eb8999df5192a43f3a (diff)
downloadgdb-edd66f8ac3a96c479e0301a672987556d30923da.tar.gz
* source.c (mod_path, openp): Use #ifdef HAVE_DOS_BASED_FILE_SYSTEM
instead of #if HAVE_DOS_BASED_FILE_SYSTEM. * completer.c: Ditto. * cli/cli-cmds.c (cd_command): Ditto.
Diffstat (limited to 'gdb/source.c')
-rw-r--r--gdb/source.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/source.c b/gdb/source.c
index fdb6859a1aa..ebc82dc88f3 100644
--- a/gdb/source.c
+++ b/gdb/source.c
@@ -332,7 +332,7 @@ mod_path (char *dirname, char **which_path)
}
if (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
-#if HAVE_DOS_BASED_FILE_SYSTEM
+#ifdef HAVE_DOS_BASED_FILE_SYSTEM
/* On MS-DOS and MS-Windows, h:\ is different from h: */
&& !(p == name + 3 && name[1] == ':') /* "d:/" */
#endif
@@ -371,7 +371,7 @@ mod_path (char *dirname, char **which_path)
if (name[0] == '~')
name = tilde_expand (name);
-#if HAVE_DOS_BASED_FILE_SYSTEM
+#ifdef HAVE_DOS_BASED_FILE_SYSTEM
else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
name = concat (name, ".", NULL);
#endif