X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0569d6d1631dc90d4f2f2df6bdd0599c7ecc7814..745184ce4dfd76dfe3edd5289bd638e599e0892e:/uip/anno.c diff --git a/uip/anno.c b/uip/anno.c index ca3497a4..ee9dcd71 100644 --- a/uip/anno.c +++ b/uip/anno.c @@ -85,7 +85,7 @@ static struct swit switches[] = { /* * static prototypes */ -static void make_comp (char **); +static void make_comp (unsigned char **); int @@ -93,7 +93,8 @@ main (int argc, char **argv) { int inplace = 1, datesw = 1; int msgnum; - char *cp, *maildir, *comp = NULL; + char *cp, *maildir; + unsigned char *comp = NULL; char *text = NULL, *folder = NULL, buf[BUFSIZ]; char **argp, **arguments; struct msgs_array msgs = { 0, 0, NULL }; @@ -235,7 +236,8 @@ main (int argc, char **argv) else annotate (draft, comp, text, inplace, datesw, delete, append); - return (done(0)); + done(0); + return 1; } #ifdef UCI @@ -284,13 +286,14 @@ main (int argc, char **argv) seq_save (mp); /* synchronize message sequences */ folder_free (mp); /* free folder/message structure */ context_save (); /* save the context file */ - return done (0); + done (0); + return 1; } static void -make_comp (char **ap) +make_comp (unsigned char **ap) { - register char *cp; + register unsigned char *cp; char buffer[BUFSIZ]; if (*ap == NULL) {