X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmsh.c;h=6d6fbca2fed46b98d27cf4c33dca7aa3d81e865c;hp=6bb6f06d262fa99053c68a214cf586d64f04fa1b;hb=38615191e71744b066425e0c44412b62dbe49cc2;hpb=7879ea4084333b448c5a3a49c1cb52023e3808d1 diff --git a/uip/msh.c b/uip/msh.c index 6bb6f06..6d6fbca 100644 --- a/uip/msh.c +++ b/uip/msh.c @@ -3,6 +3,10 @@ * msh.c -- The nmh shell * * $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. */ /* @@ -17,7 +21,8 @@ #include #include #include -#include +#include +#include #ifdef HAVE_TERMIOS_H # include @@ -346,7 +351,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 if (file) @@ -408,7 +413,8 @@ main (int argc, char **argv) m_reset (); - return done (0); + done (0); + return 1; } @@ -937,9 +943,7 @@ m_gMsgs (int n) return; nmsgs = nMsgs + n + MAXFOLDER / 2; - Msgs = (struct Msg *) realloc ((char *) Msgs, (size_t) (nmsgs + 2) * sizeof *Msgs); - if (Msgs == NULL) - padios (NULL, "unable to reallocate Msgs structure"); + Msgs = (struct Msg *) mh_xrealloc ((char *) Msgs, (size_t) (nmsgs + 2) * sizeof *Msgs); memset((char *) (Msgs + nMsgs + 2), 0, (size_t) ((nmsgs - nMsgs) * sizeof *Msgs)); nMsgs = nmsgs; @@ -1222,7 +1226,7 @@ readid (int msgnum) case FLD: case FLDEOF: case FLDPLUS: - if (!strcasecmp (name, BBoard_ID)) { + if (!mh_strcasecmp (name, BBoard_ID)) { bp = getcpy (buf); while (state == FLDPLUS) { state = m_getfld (state, name, buf, sizeof(buf), zp); @@ -1541,7 +1545,8 @@ static int parse (char *buffer, struct Cmd *cmdp) { int argp = 0; - char c, *cp, *pp; + unsigned char c, *cp; + char *pp; cmdp->line[0] = 0; pp = cmdp->args[argp++] = cmdp->line; @@ -1888,7 +1893,7 @@ static int pINI (void) { int i, vrsn; - char *bp; + unsigned char *bp; struct record rcs, *rc; rc = &rcs;