]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix indentation
authorZdenek Dohnal <zdohnal@redhat.com>
Tue, 2 Sep 2025 06:20:52 +0000 (08:20 +0200)
committerZdenek Dohnal <zdohnal@redhat.com>
Tue, 2 Sep 2025 06:21:13 +0000 (08:21 +0200)
backend/ipp.c

index 0bcce69ff0ac6925fa14da5dc0a19f62aede6b96..8311a1cf97cdff17909f4ff023100ede159b7763 100644 (file)
@@ -2116,24 +2116,24 @@ main(int  argc,                         /* I - Number of command-line args */
        password_tries = 0;
       else
       {
-        if (ipp_status == IPP_STATUS_ERROR_INTERNAL)
-        {
-          waitjob_tries ++;
+       if (ipp_status == IPP_STATUS_ERROR_INTERNAL)
+       {
+         waitjob_tries ++;
 
-          if (waitjob_tries > 4)
-          {
-            ippDelete(response);
-            ipp_status = IPP_STATUS_OK;
-            break;
-          }
-        }
-        else if (ipp_status != IPP_STATUS_ERROR_SERVICE_UNAVAILABLE &&
-            ipp_status != IPP_STATUS_ERROR_BUSY)
-        {
-          ippDelete(response);
-          ipp_status = IPP_STATUS_OK;
-          break;
-        }
+         if (waitjob_tries > 4)
+         {
+           ippDelete(response);
+           ipp_status = IPP_STATUS_OK;
+           break;
+         }
+       }
+       else if (ipp_status != IPP_STATUS_ERROR_SERVICE_UNAVAILABLE &&
+           ipp_status != IPP_STATUS_ERROR_BUSY)
+       {
+         ippDelete(response);
+         ipp_status = IPP_STATUS_OK;
+         break;
+       }
       }
 
       if (response)