mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix a reference to HeaderCachePageSize.

Commit 4c728278 converted the config far to type DT_LNUM, but
embarrassingly I missed a usage.

+2 -1
+2 -1
hcache.c
··· 1259 1259 u_int32_t createflags = DB_CREATE; 1260 1260 int pagesize; 1261 1261 1262 - if (mutt_atoi (HeaderCachePageSize, &pagesize) < 0 || pagesize <= 0) 1262 + pagesize = HeaderCachePageSize; 1263 + if (pagesize <= 0) 1263 1264 pagesize = 16384; 1264 1265 1265 1266 snprintf (h->lockfile, _POSIX_PATH_MAX, "%s-lock-hack", path);