Removed the mhlproc profile entry. Call mhl directly.
[mmh] / sbr / context_foil.c
index 93b198d..5a38030 100644 (file)
@@ -13,9 +13,8 @@
 ** Foil search of users .mh_profile
 ** If error, return -1, else return 0
 */
-
 int
-context_foil (char *path)
+context_foil(char *path)
 {
        register struct node *np;
 
@@ -43,23 +42,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;
                        }
        }