--- src/msgid.c.orig Sun Mar 7 15:58:18 1999 +++ src/msgid.c Sun Feb 18 14:33:18 2001 @@ -7,6 +7,9 @@ * the GNU General Public License applies * * $Log: msgid.c,v $ + * Revision x.xx 2001/02/18 + * Use xmalloc and xrealloc from libinn.h () + * * Revision 1.6 1999/03/07 14:58:18 src * Read newsconfig supported. Storage API supported. * @@ -53,7 +56,9 @@ /* add to list */ n = sizeof(MESSAGE_ID) + strlen(msgid); - mp = xmalloc(n); + +/* xmalloc from libinn () */ + mp = xmalloc(n,"msgid.c",61); strcpy(mp->name,msgid); mp->next = messageids[h]; messageids[h] = mp;