Browse Source

EAI_NODATA deprecated, patch to use EAI_NONAME if missing (it is in FreeBSD)

v0.7.4-release
Herbert Vojcik 15 years ago
committed by Ryan Dahl
parent
commit
9e97e185ad
  1. 3
      src/node_net2.cc

3
src/node_net2.cc

@ -1080,6 +1080,9 @@ struct resolve_request {
char hostname[1];
};
#ifndef EAI_NODATA // EAI_NODATA is deprecated, FreeBSD already thrown it away in favor of EAI_NONAME
#define EAI_NODATA EAI_NONAME
#endif
static int AfterResolve(eio_req *req) {
ev_unref(EV_DEFAULT_UC);

Loading…
Cancel
Save