X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fcontext_foil.c;h=e7d7da8eb36a89b5489f1fbbc8d48854ea747171;hp=93b198da2f2cddfc1d65be75da95e88aabd6d125;hb=714b5c530ece27ea2835a313013f5b770163403c;hpb=ced6090a330d3d83d0bce709f756aa3d7d65fea4 diff --git a/sbr/context_foil.c b/sbr/context_foil.c index 93b198d..e7d7da8 100644 --- a/sbr/context_foil.c +++ b/sbr/context_foil.c @@ -15,7 +15,7 @@ */ int -context_foil (char *path) +context_foil(char *path) { register struct node *np; @@ -43,23 +43,23 @@ context_foil (char *path) ** If path is given, create a minimal profile/context list */ if (path) { - m_defs = (struct node *) mh_xmalloc (sizeof(*np)); + m_defs = (struct node *) mh_xmalloc(sizeof(*np)); np = m_defs; - if (!(np->n_name = strdup ("Path"))) { - advise (NULL, "strdup failed"); + if (!(np->n_name = strdup("Path"))) { + advise(NULL, "strdup failed"); return -1; } - if (!(np->n_field = strdup (path))) { - advise (NULL, "strdup failed"); + if (!(np->n_field = strdup(path))) { + advise(NULL, "strdup failed"); return -1; } np->n_context = 0; np->n_next = NULL; - if (mypath == NULL && (mypath = getenv ("HOME")) != NULL) - if (!(mypath = strdup (mypath))) { - advise (NULL, "strdup failed"); + if (mypath == NULL && (mypath = getenv("HOME")) != NULL) + if (!(mypath = strdup(mypath))) { + advise(NULL, "strdup failed"); return -1; } }