/*
* Add some initial elements to the profile/context list
*/
- m_defs = (struct node *) mh_xmalloc (sizeof *np);
- np = m_defs;
- np->n_name = getcpy ("Path");
- np->n_field = getcpy (pathname);
+ NEW(np);
+ m_defs = np;
+ np->n_name = mh_xstrdup("Path");
+ np->n_field = mh_xstrdup(pathname);
np->n_context = 0;
np->n_next = NULL;
/* Initialize the saved nmh version. The Path profile entry was added
above, that's all this needs. */
- (void) nmh_version_changed ();
+ (void) nmh_version_changed (0);
done (0);
return 1;