X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcontext_find.c;h=da1ee1035e4041550101f0fd661ac69dcf7e6802;hb=18017df38ebb626f6eed6f339641fd1298c326e7;hp=8c0675f71b171e41f5aa37e850699ddc4b058ff9;hpb=5dd6771b28c257af405d7248639ed0e3bcdce38b;p=mmh diff --git a/sbr/context_find.c b/sbr/context_find.c index 8c0675f..da1ee10 100644 --- a/sbr/context_find.c +++ b/sbr/context_find.c @@ -1,4 +1,3 @@ - /* * context_find.c -- find an entry in the context/profile list * @@ -13,11 +12,11 @@ char * context_find (char *str) { - struct node *np; + struct node *np; - for (np = m_defs; np; np = np->n_next) - if (!mh_strcasecmp (np->n_name, str)) - return (np->n_field); + for (np = m_defs; np; np = np->n_next) + if (!mh_strcasecmp (np->n_name, str)) + return (np->n_field); - return NULL; + return NULL; }