diff --git a/ares/ahost.c b/ares/ahost.c
index 8f6b671afc69040bf012d992e6c4bfb0f899ffe2..35bd7b0f4b45744345cf20fad7429e574fedceea 100644
--- a/ares/ahost.c
+++ b/ares/ahost.c
@@ -78,10 +78,16 @@ int main(int argc, char **argv)
   WSAStartup(wVersionRequested, &wsaData);
 #endif
 
-  while ((c = getopt(argc,argv,"t:h")) != -1)
+  while ((c = getopt(argc,argv,"dt:h")) != -1)
     {
       switch (c)
         {
+        case 'd':
+#ifdef WATT32
+          dbug_init();
+#endif
+          break;
+
         case 't':
           if (!strcasecmp(optarg,"a"))
             addr_family = AF_INET;