From: Tijs Van Buggenhout Date: Mon, 4 Jan 2021 22:54:40 +0000 (+0100) Subject: pppd: Fix indentation/whitespace in chap_find_digest X-Git-Tag: ppp-2.5.0~88^2~3 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=993cba6f11ac5c6f40dcb5245a75dbb2b6e3e791 pppd: Fix indentation/whitespace in chap_find_digest Signed-off-by: Tijs Van Buggenhout --- diff --git a/pppd/chap-new.c b/pppd/chap-new.c index ad2f5eb..15206f6 100644 --- a/pppd/chap-new.c +++ b/pppd/chap-new.c @@ -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; } /*