Convert to C-style comments.
diff --git a/src/dnssec.c b/src/dnssec.c
index 2991fe2..6e93dae 100644
--- a/src/dnssec.c
+++ b/src/dnssec.c
@@ -45,12 +45,12 @@
         }
       *buf++ = '.';
     }
-  // Remove trailing dot (if any)
+  /* Remove trailing dot (if any) */
   if (rr != start)
     *(--buf) = 0;
   if (rr == end)
     return 0;
-  // Trailing \0 in source data must be consumed
+  /* Trailing \0 in source data must be consumed */
   return rr-start+1;
 }