From 3ea2b983fc8ce4f87e080303135095ba08116011 Mon Sep 17 00:00:00 2001 From: Rose <83477269+AtariDreams@users.noreply.github.com> Date: Thu, 17 Nov 2022 10:17:22 -0500 Subject: [PATCH] Replace else-if with else This is just silly otherwise and it is causing unneeded compiler warnings --- cups/adminutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cups/adminutil.c b/cups/adminutil.c index d66918cb75..e44189c61e 100644 --- a/cups/adminutil.c +++ b/cups/adminutil.c @@ -839,7 +839,7 @@ cupsAdminSetServerSettings( if (remote_admin) cupsFilePuts(temp, " # Allow remote administration...\n"); - else if (remote_admin == 0) + else cupsFilePuts(temp, " # Restrict access to the admin pages...\n"); cupsFilePuts(temp, " Order allow,deny\n"); -- 2.47.2