/*
* what action to take?
*/
-static int cachesw = 0;
+static bool cachesw;
static bool listsw;
static bool showsw;
static bool storesw;
{
bool sizesw = true;
bool headsw = true;
- int autosw = 0;
+ bool autosw = false;
int msgnum, *icachesw;
char *cp, *file = NULL, *folder = NULL;
char *maildir, buf[100], **argp;
done (0);
case AUTOSW:
- autosw++;
+ autosw = true;
continue;
case NAUTOSW:
- autosw = 0;
+ autosw = false;
continue;
case CACHESW:
- cachesw++;
+ cachesw = true;
continue;
case NCACHESW:
- cachesw = 0;
+ cachesw = false;
continue;
case RCACHESW: