]> granicus.if.org Git - neomutt/commitdiff
fix: "inbox" sorting function
authorPietro Cerutti <gahr@gahr.ch>
Tue, 18 Oct 2016 14:25:31 +0000 (14:25 +0000)
committerRichard Russon <rich@flatcap.org>
Wed, 19 Oct 2016 23:41:25 +0000 (00:41 +0100)
Make mutt_is_inbox only consider an "INBOX" string following a '/'

Fixes: #205
lib.c

diff --git a/lib.c b/lib.c
index ad0dfbace3c2c8986f73d5bc9f80e578bb5e4dce..6a93d430bdd75c7c0f858ffd3a75ed19d435374c 100644 (file)
--- a/lib.c
+++ b/lib.c
@@ -1091,7 +1091,7 @@ int mutt_atol (const char *str, long *dst)
 int mutt_is_inbox (const char *path)
 {
   size_t plen = mutt_strlen (path);
-  return ((plen >= 5) && (mutt_strcasecmp (path + plen - 5, "inbox") == 0));
+  return ((plen >= 6) && (mutt_strcasecmp (path + plen - 6, "/inbox") == 0));
 }
 
 int mutt_same_path (const char *a, const char *b)