]> diplodocus.org Git - nmh/blob - uip/mhl.c
Cope with sasl_decode64() returning SASL_CONTINUE as well as SASL_OK.
[nmh] / uip / mhl.c
1
2 /*
3 * mhl.c -- the nmh message listing program
4 *
5 * $Id$
6 *
7 * This code is Copyright (c) 2002, by the authors of nmh. See the
8 * COPYRIGHT file in the root directory of the nmh distribution for
9 * complete copyright information.
10 */
11
12 #include <h/mh.h>
13
14 /* prototype from mhlsbr.c */
15 int mhl (int, char **);
16
17
18 int
19 main (int argc, char **argv)
20 {
21 #ifdef LOCALE
22 setlocale(LC_ALL, "");
23 #endif
24 done (mhl (argc, argv));
25 return 1;
26 }
27
28
29 /*
30 * Cheat: we are loaded with adrparse, which wants a routine called
31 * OfficialName(). We call adrparse:getm() with the correct arguments
32 * to prevent OfficialName() from being called. Hence, the following
33 * is to keep the loader happy.
34 */
35
36 char *
37 OfficialName(char *name)
38 {
39 return name;
40 }