-
-/*
- * context_foil.c -- foil search of profile and context
+/* context_foil.c -- foil search of profile and context
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
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;
}
}
return 0;
}
-