X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fali.c;h=a8812c224890d096737538f7b5b35c39718d668f;hb=56a805299de35d8924969138aef4d0f1580daa6d;hp=7cffc5043192ea460bae79188dda4a09cd335328;hpb=dee387b53ab0d42922f857b60d6f980c9e79d16f;p=mmh diff --git a/uip/ali.c b/uip/ali.c index 7cffc50..a8812c2 100644 --- a/uip/ali.c +++ b/uip/ali.c @@ -3,12 +3,17 @@ * ali.c -- list nmh mail aliases * * $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. */ #include #include #include #include +#include /* * maximum number of names @@ -46,8 +51,8 @@ extern struct aka *akahead; /* * prototypes */ -void print_aka (char *, int, int); -void print_usr (char *, int, int); +static void print_aka (char *, int, int); +static void print_usr (char *, int, int); int @@ -168,7 +173,7 @@ main (int argc, char **argv) return done (0); } -void +static void print_aka (char *p, int list, int margin) { char c; @@ -208,7 +213,7 @@ print_aka (char *p, int list, int margin) pos = 1; } -void +static void print_usr (char *s, int list, int norm) { register char *cp, *pp, *vp; @@ -228,8 +233,8 @@ print_usr (char *s, int list, int norm) while ((cp = getname (pp))) { if ((np = getm (cp, NULL, 0, norm, NULL)) == NULL) continue; - if (!strcasecmp (mp->m_host, np->m_host) - && !strcasecmp (mp->m_mbox, np->m_mbox)) { + if (!mh_strcasecmp (mp->m_host, np->m_host) + && !mh_strcasecmp (mp->m_mbox, np->m_mbox)) { vp = vp ? add (ak->ak_name, add (",", vp)) : getcpy (ak->ak_name); mnfree (np);