From d45671b83356030db73ebf59b39831ade6707f53 Mon Sep 17 00:00:00 2001 From: Automatic source maintenance Date: Sun, 9 May 2010 18:13:03 -0600 Subject: [PATCH] SourceFormat Enforcement --- lib/rfc1035.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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"; -- 2.47.3