NEW(np);
m_defs = np;
if (!(np->n_name = strdup ("Path"))) {
- advise (NULL, "strdup failed");
+ inform("strdup failed");
return -1;
}
if (!(np->n_field = strdup (path))) {
- advise (NULL, "strdup failed");
+ inform("strdup failed");
return -1;
}
np->n_context = 0;
if (mypath == NULL && (mypath = getenv ("HOME")) != NULL)
if (!(mypath = strdup (mypath))) {
- advise (NULL, "strdup failed");
+ inform("strdup failed");
return -1;
}
}