X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frcvstore.c;h=fc98b4ac11b9016fca32672154fad56243adacf1;hb=601cc73d1fa05ce96faa728f036d6c51b91701c7;hp=99ec48c59950de1d8b02498cedf1a235c5b37917;hpb=d39e2c447b0d163a5a63f480b23d06edb7a73aa0;p=mmh diff --git a/uip/rcvstore.c b/uip/rcvstore.c index 99ec48c..fc98b4a 100644 --- a/uip/rcvstore.c +++ b/uip/rcvstore.c @@ -11,7 +11,6 @@ #include #include #include -#include static struct swit switches[] = { #define CRETSW 0 @@ -52,7 +51,8 @@ main(int argc, char **argv) { int publicsw = -1, zerosw = 0; int create = 1, unseensw = 1; - int fd, msgnum, seqp = 0; + int fd, msgnum; + size_t seqp = 0; char *cp, *maildir, *folder = NULL, buf[BUFSIZ]; char **argp, **arguments, *seqs[NUMATTRS+1]; struct msgs *mp; @@ -68,7 +68,6 @@ main(int argc, char **argv) /* read user profile/context */ context_read(); - mts_init(invo_name); arguments = getarguments(invo_name, argc, argv, 1); argp = arguments; @@ -202,8 +201,8 @@ main(int argc, char **argv) ** Link message into folder, and possibly add ** to the Unseen-Sequence's. */ - if ((msgnum = folder_addmsg(&mp, tmpfilenam, 0, unseensw, 0, 0, - (char *)0)) == -1) + if ((msgnum = folder_addmsg(&mp, tmpfilenam, 0, unseensw, 0, 0, NULL)) + == -1) done(1); /* @@ -215,7 +214,7 @@ main(int argc, char **argv) done(1); } - seq_setunseen(mp, 0); /* synchronize any Unseen-Sequence's */ + seq_setunseen(mp, 1); /* add new msgs to unseen sequences */ seq_save(mp); /* synchronize and save message sequences */ folder_free(mp); /* free folder/message structure */