diff --git a/lib/dns.js b/lib/dns.js index fd0b12b1de5e55..97f730c27b7ea0 100644 --- a/lib/dns.js +++ b/lib/dns.js @@ -127,11 +127,6 @@ exports.lookup = function lookup(hostname, options, callback) { hints !== (exports.ADDRCONFIG | exports.V4MAPPED)) { throw new TypeError('invalid argument: hints must use valid flags'); } - - // FIXME(indutny): V4MAPPED on FreeBSD results in EAI_BADFLAGS, because - // the libc does not support it - if (process.platform === 'freebsd' && family !== 6) - hints &= ~exports.V4MAPPED; } else { family = options >>> 0; }