gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 18 May 2012 17:44:37 +0000 (17:44 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 18 May 2012 17:44:37 +0000 (17:44 +0000)
* auto-load.c (show_auto_load_safe_path): Accept any combination of
DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.

gdb/ChangeLog
gdb/auto-load.c

index 865b5bf264b2e270c1101cbdf8ff7e45676d33bd..7ea7194b88044cf7e57e9902cee32cd0b3fb4551 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * auto-load.c (show_auto_load_safe_path): Accept any combination of
+       DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
+
 2012-05-18  Tom Tromey  <tromey@redhat.com>
 
        PR exp/13907:
index 5ee117f13dfb2cf70a8b35ce90208ad74711763e..462ee0609a6e1c1aa039ef6dc199fa41885cb573 100644 (file)
@@ -241,7 +241,15 @@ static void
 show_auto_load_safe_path (struct ui_file *file, int from_tty,
                          struct cmd_list_element *c, const char *value)
 {
-  if (strcmp (value, "/") == 0)
+  const char *cs;
+
+  /* Check if user has entered either "/" or for example ":".
+     But while more complicate content like ":/foo" would still also
+     permit any location do not hide those.  */
+
+  for (cs = value; *cs && (*cs == DIRNAME_SEPARATOR || IS_DIR_SEPARATOR (*cs));
+       cs++);
+  if (*cs == 0)
     fprintf_filtered (file, _("Auto-load files are safe to load from any "
                              "directory.\n"));
   else