]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Mon, 10 May 2010 00:13:03 +0000 (18:13 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Mon, 10 May 2010 00:13:03 +0000 (18:13 -0600)
lib/rfc1035.c

index 33832676d28759bcb29a507e599662a8ff2d2285..9f0df23bba470515cf85c18515749768d9adcb61 100644 (file)
@@ -433,34 +433,34 @@ const char *
 rfc1035ErrorMessage(int n)
 {
     if (n < 0)
-       n = -n;
+        n = -n;
     switch (n) {
     case 0:
         return "No error condition";
         break;
     case 1:
         return "Format Error: The name server was "
-                                "unable to interpret the query.";
+               "unable to interpret the query.";
         break;
     case 2:
         return "Server Failure: The name server was "
-                                "unable to process this query.";
+               "unable to process this query.";
         break;
     case 3:
         return "Name Error: The domain name does "
-                                "not exist.";
+               "not exist.";
         break;
     case 4:
         return "Not Implemented: The name server does "
-                                "not support the requested kind of query.";
+               "not support the requested kind of query.";
         break;
     case 5:
         return "Refused: The name server refuses to "
-                                "perform the specified operation.";
+               "perform the specified operation.";
         break;
     case rfc1035_unpack_error:
         return "The DNS reply message is corrupt or could "
-                                "not be safely parsed.";
+               "not be safely parsed.";
         break;
     default:
         return "Unknown Error";