Skip to content

Commit

Permalink
Fix bad sentence.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gisle Vanem committed Aug 3, 2009
1 parent 0606b79 commit 1a14966
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ares/acountry.c
Expand Up @@ -10,8 +10,8 @@
* CNAME = zz<CC>.countries.nerd.dk with address 127.0.x.y (ver 1) or
* CNAME = <a.b.c.d>.zz.countries.nerd.dk with address 127.0.x.y (ver 2)
*
* The 2 letter country code in <CC> and the ISO-3166 country
* number in x.y (number = x*256 + y). Version 2 of the protocol is missing
* The 2 letter country code is in <CC> and the ISO-3166 country
* number is in x.y (number = x*256 + y). Version 2 of the protocol is missing
* the <CC> number.
*
* Ref: http://countries.nerd.dk/more.html
Expand Down Expand Up @@ -116,6 +116,10 @@ int main(int argc, char **argv)
WSAStartup(wVersionRequested, &wsaData);
#endif

#ifdef WIN32
LoadLibrary ("exchndl.dll");
#endif

status = ares_library_init(ARES_LIB_INIT_ALL);
if (status != ARES_SUCCESS)
{
Expand Down

0 comments on commit 1a14966

Please sign in to comment.