From 031d2acf9f1f73d02fb73cfb9ee7f982cb87695e Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sun, 5 Nov 2023 22:17:14 +0100 Subject: [PATCH] Let's tolerate a bit longer lines... ...otherwise we will have to tolerate uglier code. --- src/main.c | 3 +-- tests/lint/line_length.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index a6a9fab6..f810bac7 100644 --- a/src/main.c +++ b/src/main.c @@ -312,8 +312,7 @@ int main(int argc, char **argv) {"pppd-ipparam", required_argument, NULL, 0}, {"pppd-ifname", required_argument, NULL, 0}, {"pppd-call", required_argument, NULL, 0}, - {"pppd-accept-remote", optional_argument, - &cli_cfg.pppd_accept_remote, 1}, + {"pppd-accept-remote", optional_argument, &cli_cfg.pppd_accept_remote, 1}, {"plugin", required_argument, NULL, 0}, // deprecated #endif #if HAVE_USR_SBIN_PPP diff --git a/tests/lint/line_length.py b/tests/lint/line_length.py index 9a696453..c17377ee 100755 --- a/tests/lint/line_length.py +++ b/tests/lint/line_length.py @@ -19,7 +19,7 @@ import sys # Guidelines say 80, let's tolerate a bit more -MAX = 90 +MAX = 92 def endswithstring(line):