X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;ds=sidebyside;f=uip%2Faliasbr.c;h=b1a7e619cd0e0a2c9be06d49e6a2d7e4fc9a75fd;hb=5dd6771b28c257af405d7248639ed0e3bcdce38b;hp=19f204faa9ad177bae87a9ab5e73bd243dbc263b;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/uip/aliasbr.c b/uip/aliasbr.c index 19f204f..b1a7e61 100644 --- a/uip/aliasbr.c +++ b/uip/aliasbr.c @@ -2,8 +2,6 @@ /* * aliasbr.c -- new aliasing mechanism * - * $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. @@ -11,6 +9,7 @@ #include #include +#include #include #include @@ -35,7 +34,7 @@ char *akerror (int); static char *akval (struct aka *, char *); static int aleq (char *, char *); -static char *scanp (char *); +static char *scanp (unsigned char *); static char *getp (char *); static char *seekp (char *, char *, char **); static int addfile (struct aka *, char *); @@ -46,9 +45,7 @@ static char *getalias (char *); static void add_aka (struct aka *, char *); static struct aka *akalloc (char *); static struct home *hmalloc (struct passwd *); -#ifndef MMDFMTS struct home *seek_home (char *); -#endif /* Do mh alias substitution on 's' and return the results. */ @@ -280,7 +277,7 @@ akerror (int i) static char * -scanp (char *p) +scanp (unsigned char *p) { while (isspace (*p)) p++; @@ -291,7 +288,7 @@ scanp (char *p) static char * getp (char *p) { - register char *cp = scanp (p); + register unsigned char *cp = scanp (p); p = cp; while (!isspace (*cp) && *cp) @@ -305,7 +302,7 @@ getp (char *p) static char * seekp (char *p, char *c, char **a) { - register char *cp; + register unsigned char *cp; p = cp = scanp (p); while (!isspace (*cp) && *cp && *cp != ':' && *cp != ';') @@ -437,7 +434,7 @@ addall (struct aka *ak) static char * getalias (char *addrs) { - register char *pp, *qp; + register unsigned char *pp, *qp; static char *cp = NULL; if (cp == NULL) @@ -475,9 +472,7 @@ add_aka (struct aka *ak, char *pp) if (!strcmp (pp, ad->ad_text)) return; - ad = (struct adr *) malloc (sizeof(*ad)); - if (ad == NULL) - return; + ad = (struct adr *) mh_xmalloc (sizeof(*ad)); ad->ad_text = getcpy (pp); ad->ad_local = strchr(pp, '@') == NULL && strchr(pp, '!') == NULL; ad->ad_next = NULL; @@ -522,8 +517,7 @@ akalloc (char *id) { register struct aka *p; - if (!(p = (struct aka *) malloc (sizeof(*p)))) - return NULL; + p = (struct aka *) mh_xmalloc (sizeof(*p)); p->ak_name = getcpy (id); p->ak_visible = 0; @@ -544,8 +538,7 @@ hmalloc (struct passwd *pw) { register struct home *p; - if (!(p = (struct home *) malloc (sizeof(*p)))) - return NULL; + p = (struct home *) mh_xmalloc (sizeof(*p)); p->h_name = getcpy (pw->pw_name); p->h_uid = pw->pw_uid; @@ -564,7 +557,6 @@ hmalloc (struct passwd *pw) } -#ifndef MMDFMTS struct home * seek_home (char *name) { @@ -572,7 +564,8 @@ seek_home (char *name) #ifdef DBMPWD struct passwd *pw; char lname[32]; - char *c,*c1; + unsigned char *c; + char *c1; #else /* DBMPWD */ if (homehead == NULL) @@ -580,7 +573,7 @@ seek_home (char *name) #endif /* DBMPWD */ for (hp = homehead; hp; hp = hp->h_next) - if (!strcasecmp (name, hp->h_name)) + if (!mh_strcasecmp (name, hp->h_name)) return hp; #ifdef DBMPWD @@ -601,4 +594,3 @@ seek_home (char *name) return NULL; } -#endif /* MMDFMTS */