summaryrefslogtreecommitdiffstats
path: root/bcache.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-09-09 14:06:31 -0700
committerKevin McCarthy <kevin@8t8.us>2019-09-09 18:13:12 -0700
commit2e6d4903a1e81f673ba2b66ab372dd09f95d6d5a (patch)
tree07a14df96c05af5e223a8d4cffea36847abf61ea /bcache.c
parent616b20634e3b4e1d89acc6570332a052e5e6418f (diff)
Convert remaining mutt_encode_path() call to use BUFFER.
Then rename the other uses of mutt_buffer_encode_path() to mutt_encode_path().
Diffstat (limited to 'bcache.c')
-rw-r--r--bcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bcache.c b/bcache.c
index 0fef6c32..b6925d4a 100644
--- a/bcache.c
+++ b/bcache.c
@@ -62,7 +62,7 @@ static int bcache_path(ACCOUNT *account, const char *mailbox, body_cache_t *bcac
path = mutt_buffer_pool_get ();
dst = mutt_buffer_pool_get ();
- mutt_buffer_encode_path (path, NONULL (mailbox));
+ mutt_encode_path (path, NONULL (mailbox));
mutt_buffer_printf (dst, "%s/%s%s", MessageCachedir, host, mutt_b2s (path));
if (*(dst->dptr - 1) != '/')