View | Details | Raw Unified | Return to bug 68650
Collapse All | Expand All

(-)./Makefile (-1 / +1 lines)
Lines 84-90 Link Here
84
84
85
PORTNAME=	mutt-devel
85
PORTNAME=	mutt-devel
86
PORTVERSION=	1.5.6
86
PORTVERSION=	1.5.6
87
PORTREVISION=	4
87
PORTREVISION=	5
88
CATEGORIES+=	mail ipv6
88
CATEGORIES+=	mail ipv6
89
.if defined(WITH_MUTT_NNTP)
89
.if defined(WITH_MUTT_NNTP)
90
CATEGORIES+=	news
90
CATEGORIES+=	news
(-)./files/patch-init.c (+21 lines)
Lines 37-39 Link Here
37
 
37
 
38
 #ifndef DOMAIN
38
 #ifndef DOMAIN
39
 #define DOMAIN buffer
39
 #define DOMAIN buffer
40
--- init.c.orig
41
+++ init.c
42
@@ -1371,17 +1371,6 @@
43
   pid_t pid;
44
   struct stat s;
45
 
46
-  if (stat (rcfile, &s) < 0)
47
-  {
48
-    snprintf (err->data, err->dsize, _("%s: stat: %s"), rcfile, strerror (errno));
49
-    return (-1);
50
-  }
51
-  if (!S_ISREG (s.st_mode))
52
-  {
53
-    snprintf (err->data, err->dsize, _("%s: not a regular file"), rcfile);
54
-    return (-1);
55
-  }
56
-
57
   if ((f = mutt_open_read (rcfile, &pid)) == NULL)
58
   {
59
     snprintf (err->data, err->dsize, "%s: %s", rcfile, strerror (errno));
60

Return to bug 68650