From: Rose <83477269+AtariDreams@users.noreply.github.com> Date: Thu, 17 Nov 2022 15:17:22 +0000 (-0500) Subject: Replace else-if with else X-Git-Tag: v2.4.3~105^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F537%2Fhead;p=thirdparty%2Fcups.git Replace else-if with else This is just silly otherwise and it is causing unneeded compiler warnings --- 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");