From 5c1cba8b9cb9844bfca8e11efc64f358acd418b6 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> Date: Sat, 17 Jul 2021 10:51:40 +0200 Subject: [PATCH] Fix Linux kernel coding style warning quoted string split across lines Signed-off-by: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> --- auth-juniper.c | 6 ++---- auth.c | 3 +-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/auth-juniper.c b/auth-juniper.c index b8be3d2b..04f6fe82 100644 --- a/auth-juniper.c +++ b/auth-juniper.c @@ -318,15 +318,13 @@ static int tncc_preauth(struct openconnect_info *vpninfo) goto respfail; if (len > 0) vpn_progress(vpninfo, PRG_DEBUG, - _("Unexpected non-empty line from TNCC " - "after DSPREAUTH cookie: '%s'\n"), + _("Unexpected non-empty line from TNCC after DSPREAUTH cookie: '%s'\n"), recvbuf); } while (len && (count++ < 10)); if (len > 0) { vpn_progress(vpninfo, PRG_ERR, - _("Too many non-empty lines from TNCC after " - "DSPREAUTH cookie\n")); + _("Too many non-empty lines from TNCC after DSPREAUTH cookie\n")); goto respfail; } diff --git a/auth.c b/auth.c index a77e0979..70b65d8e 100644 --- a/auth.c +++ b/auth.c @@ -1200,8 +1200,7 @@ static int run_csd_script(struct openconnect_info *vpninfo, char *buf, int bufle if (set_csd_user(vpninfo) < 0) exit(1); if (getuid() == 0 && !vpninfo->csd_wrapper) { - fprintf(stderr, _("Warning: you are running insecure " - "CSD code with root privileges\n" + fprintf(stderr, _("Warning: you are running insecure CSD code with root privileges\n" "\t Use command line option \"--csd-user\"\n")); } /* -- 2.50.1