Show
Ignore:
Timestamp:
2001-05-23 07:19:16 (8 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

patch-bac.chdir-20010523.1

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • browser.c

    r2238 r2412  
    908908#endif 
    909909        { 
    910           /* add '/' at the end of the directory name */ 
     910          /* add '/' at the end of the directory name if not already there */ 
    911911          int len=mutt_strlen(LastDir); 
    912           if (sizeof (buf) > len) 
     912          if (LastDir[len-1] != '/' && sizeof (buf) > len) 
    913913            buf[len]='/'; 
    914914        }