From: Automatic source maintenance Date: Mon, 10 May 2010 00:13:03 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_2_0_1~226 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d45671b83356030db73ebf59b39831ade6707f53;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/lib/rfc1035.c b/lib/rfc1035.c index 33832676d2..9f0df23bba 100644 --- a/lib/rfc1035.c +++ b/lib/rfc1035.c @@ -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";