X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/2d5d9e243c91784909b11948894e3ba0989107c0..665dfc96f45c47ecfae79f1baa2c29dabe5a2ded:/sbr/context_foil.c?ds=inline diff --git a/sbr/context_foil.c b/sbr/context_foil.c index aabac558..478d941b 100644 --- a/sbr/context_foil.c +++ b/sbr/context_foil.c @@ -1,6 +1,4 @@ - -/* - * 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 @@ -18,7 +16,7 @@ int context_foil (char *path) { - register struct node *np; + struct node *np; /* In fact, nobody examines defpath in code paths where * it's been set by us -- the uses in the source tree are: @@ -47,11 +45,11 @@ context_foil (char *path) 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; @@ -59,11 +57,10 @@ context_foil (char *path) if (mypath == NULL && (mypath = getenv ("HOME")) != NULL) if (!(mypath = strdup (mypath))) { - advise (NULL, "strdup failed"); + inform("strdup failed"); return -1; } } return 0; } -