]> granicus.if.org Git - neomutt/commitdiff
mutt_str_startswith - nntp/nntp.c
authorPietro Cerutti <gahr@gahr.ch>
Fri, 9 Nov 2018 17:01:17 +0000 (17:01 +0000)
committerRichard Russon <rich@flatcap.org>
Wed, 14 Nov 2018 15:10:31 +0000 (15:10 +0000)
nntp/nntp.c

index a02d1377f8fa3a3949388e467607d1bf23502306..bb6fb6e779a87ddb505374863227cd0b17d1e5c5 100644 (file)
@@ -2820,10 +2820,10 @@ enum MailboxType nntp_path_probe(const char *path, const struct stat *st)
   if (!path)
     return MUTT_UNKNOWN;
 
-  if (mutt_str_strncasecmp(path, "news://", 7) == 0)
+  if (mutt_str_startswith(path, "news://", CASE_IGNORE))
     return MUTT_NNTP;
 
-  if (mutt_str_strncasecmp(path, "snews://", 8) == 0)
+  if (mutt_str_startswith(path, "snews://", CASE_IGNORE))
     return MUTT_NNTP;
 
   return MUTT_UNKNOWN;