X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fali.c;h=41f92a6ead47fe6de0bea62ae6221dd7e5abf0dd;hp=67e7aee56eab63903861f9df635ef91284fb5525;hb=5dd6771b28c257af405d7248639ed0e3bcdce38b;hpb=8f4c5da8971926f7eccc912f7998c343aef3c33b diff --git a/uip/ali.c b/uip/ali.c index 67e7aee..41f92a6 100644 --- a/uip/ali.c +++ b/uip/ali.c @@ -2,13 +2,16 @@ /* * 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 +#include /* * maximum number of names @@ -46,8 +49,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 @@ -165,10 +168,11 @@ main (int argc, char **argv) } } - return done (0); + done (0); + return 1; } -void +static void print_aka (char *p, int list, int margin) { char c; @@ -208,7 +212,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 +232,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);