linux.c: Mark debugging code with a more useful preprocessor macro name.
[yaid] / linux.c
diff --git a/linux.c b/linux.c
index 17a27a8..25fcb6c 100644 (file)
--- a/linux.c
+++ b/linux.c
@@ -64,8 +64,8 @@ static int parseaddr_ipv6(char **pp, union addr *a)
     y = 0;
     for (j = 0; j < 8; j++) {
       if ('0' <= *p && *p <= '9') x = *p - '0';
-      else if ('a' <= *p && *p <= 'f') x = *p - 'a'+ 10;
-      else if ('A' <= *p && *p <= 'F') x = *p - 'A'+ 10;
+      else if ('a' <= *p && *p <= 'f') x = *p - 'a' + 10;
+      else if ('A' <= *p && *p <= 'F') x = *p - 'A' + 10;
       else return (-1);
       y = (y << 4) | x;
       p++;
@@ -381,7 +381,7 @@ void identify(struct query *q)
        }
       }
 
-#ifdef notdef
+#ifdef DEBUG
       {
        /* Print the record we found. */
        dstr dd = DSTR_INIT;