summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2002-12-11 15:20:21 +0000
committerThomas Roessler <roessler@does-not-exist.org>2002-12-11 15:20:21 +0000
commitd557f81e5396dd46e80daabbe2488138a53e4cef (patch)
tree28f32e3e19687a6b55bac687d55f22092560d18a /lib.h
parente9e1c6d1ac66ec32347103dfabfee7eba5c5dfde (diff)
Herbert Martin Dietze <herbert@the-little-red-haired-girl.org> notes
that mutt may currently build IMAP URLs like imap://exchange//herbert for FCCs. The fix in this patch is to include a function named mutt_concat_path which concatenates path elements, but avoids the creation of double slashes. (These don't create problems when you're just accessing the file system, but apparently thy do cause problems with IMAP.)
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib.h b/lib.h
index 4d6df81c..d38a5f78 100644
--- a/lib.h
+++ b/lib.h
@@ -109,6 +109,7 @@ void mutt_exit (int);
FILE *safe_fopen (const char *, const char *);
+char *mutt_concat_path (char *, const char *, const char *, size_t);
char *mutt_read_line (char *, size_t *, FILE *, int *);
char *mutt_skip_whitespace (char *);
char *mutt_strlower (char *);