X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fcontext_find.c;h=da1ee1035e4041550101f0fd661ac69dcf7e6802;hp=8c0675f71b171e41f5aa37e850699ddc4b058ff9;hb=a485ed478abbd599d8c9aab48934e7a26733ecb1;hpb=f480c03187724e54e5391ee61b810827da319a6c 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; }