]> granicus.if.org Git - mutt/commitdiff
Undo an earlier change to _mutt_expand_path, which seems to have
authorThomas Roessler <roessler@does-not-exist.org>
Sat, 11 Aug 2001 17:39:13 +0000 (17:39 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sat, 11 Aug 2001 17:39:13 +0000 (17:39 +0000)
caused problems.  From Brendan Cully.

muttlib.c

index defdd9e8c456666db5836c00a1c1dd287fb614eb..532009b107763d3025b83e71fd6efd4af1139eaf 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -461,13 +461,6 @@ char *_mutt_expand_path (char *s, size_t slen, int rx)
   }
   while (recurse);
 
-#ifdef USE_IMAP
-  /* Rewrite IMAP path in canonical form - aids in string comparisons of
-   *   folders. May possibly fail, in which case s should be the same. */
-  if (mx_is_imap (s))
-    imap_expand_path (s, slen);
-#endif
-
   return (s);
 }