X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/9a87f2bf9289ef232ec8c267fd7be76120c87ca2..78290c874170b39a1f87d1dcbd80d03fa6a6ab05:/uip/mhstore.c diff --git a/uip/mhstore.c b/uip/mhstore.c index cdb7f20f..2b08a6ba 100644 --- a/uip/mhstore.c +++ b/uip/mhstore.c @@ -51,7 +51,6 @@ DEFINE_SWITCH_ARRAY(MHSTORE, switches); /* mhparse.c */ int debugsw = 0; -CT parse_mime (char *); /* * static prototypes @@ -212,7 +211,7 @@ do_cache: */ if ((cp = getenv ("MHSTORE"))) { if ((fp = fopen (cp, "r"))) { - readconfig ((struct node **) 0, fp, cp, 0); + readconfig(NULL, fp, cp, 0); fclose (fp); } else { admonish ("", "unable to read $MHSTORE profile (%s)", cp); @@ -223,7 +222,7 @@ do_cache: * Read the standard profile setup */ if ((fp = fopen (cp = etcpath ("mhn.defaults"), "r"))) { - readconfig ((struct node **) 0, fp, cp, 0); + readconfig(NULL, fp, cp, 0); fclose (fp); }