Commit bd42a2ac authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Gisle Vanem fixed the bad argc check

parent 7f0e7083
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ int main(int argc, char **argv)
  WSAStartup(wVersionRequested, &wsaData);
#endif  

  if (argc == 0)
  if (argc <= 1)
    usage();

  status = ares_init(&channel);