]> diplodocus.org Git - nmh/blob - h/mhcachesbr.h
Fix a segfault that happens when using the -file option.
[nmh] / h / mhcachesbr.h
1
2 /*
3 * mhcachesbr.h -- definitions for manipulating MIME content cache
4 */
5
6 /*
7 * various cache policies
8 */
9 static struct swit caches[] = {
10 #define CACHE_NEVER 0
11 { "never", 0 },
12 #define CACHE_PRIVATE 1
13 { "private", 0 },
14 #define CACHE_PUBLIC 2
15 { "public", 0 },
16 #define CACHE_ASK 3
17 { "ask", 0 },
18 { NULL, 0 }
19 };