From 993cba6f11ac5c6f40dcb5245a75dbb2b6e3e791 Mon Sep 17 00:00:00 2001 From: Tijs Van Buggenhout Date: Mon, 4 Jan 2021 23:54:40 +0100 Subject: [PATCH] pppd: Fix indentation/whitespace in chap_find_digest Signed-off-by: Tijs Van Buggenhout --- pppd/chap-new.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } /* -- 2.39.2