X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fanno.c;h=24726d7f458795b7c11c7c5bc666bcce1d6ae153;hb=26ac907a39f8711907707d53050c2f950a47242f;hp=0d4413492fc6f018da6db78ba55d67d88b49eb9a;hpb=174d375bb4b9bcaa0c3f28c422216f68703494a8;p=mmh diff --git a/uip/anno.c b/uip/anno.c index 0d44134..24726d7 100644 --- a/uip/anno.c +++ b/uip/anno.c @@ -2,8 +2,6 @@ /* * anno.c -- annotate messages * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -85,7 +83,7 @@ static struct swit switches[] = { /* * static prototypes */ -static void make_comp (char **); +static void make_comp (unsigned char **); int @@ -93,7 +91,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 }; @@ -129,10 +128,10 @@ main (int argc, char **argv) snprintf (buf, sizeof(buf), "%s [+folder] [msgs] [switches]", invo_name); print_help (buf, switches, 1); - done (1); + done (0); case VERSIONSW: print_version(invo_name); - done (1); + done (0); case COMPSW: if (comp) @@ -211,7 +210,7 @@ main (int argc, char **argv) if (folder) adios (NULL, "only one folder at a time!"); else - folder = path (cp + 1, *cp == '+' ? TFOLDER : TSUBCWF); + folder = pluspath (cp); } else app_msgarg(&msgs, cp); } @@ -235,14 +234,10 @@ main (int argc, char **argv) else annotate (draft, comp, text, inplace, datesw, delete, append); - return (done(0)); + done(0); + return 1; } -#ifdef UCI - if (strcmp(invo_name, "fanno") == 0) /* ugh! */ - datesw = 0; -#endif /* UCI */ - if (!context_find ("path")) free (path ("./", TFOLDER)); if (!msgs.size) @@ -284,13 +279,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) {