]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/chap-new.c
pppd: Fix indentation/whitespace in chap_find_digest
[ppp.git] / pppd / chap-new.c
index ad2f5eb975de779f2b8f707c73fe77d40153aeb0..15206f63df1166e9b49875a2b1b9572d200a8c3a 100644 (file)
@@ -171,11 +171,11 @@ chap_register_digest(struct chap_digest_type *dp)
  */
 struct chap_digest_type *
 chap_find_digest(int digest_code) {
-    struct chap_digest_type *dp = NULL;
+       struct chap_digest_type *dp = NULL;
        for (dp = chap_digests; dp != NULL; dp = dp->next)
                if (dp->code == digest_code)
                        break;
-    return dp;
+       return dp;
 }
 
 /*