Skip to content

Commit

Permalink
dns: remove nonexistant exports.ADNAME
Browse files Browse the repository at this point in the history
This error code export was mistakingly introduced in a 2012 commit which
added more error codes. The correct export.BADNAME was added in
nodejs#3051.

Semver: Major
PR-URL: nodejs#3051
Fixes: nodejs#3050
  • Loading branch information
silverwind committed Sep 27, 2015
1 parent 24fe112 commit d37e551
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/dns.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ exports.NOTFOUND = 'ENOTFOUND';
exports.NOTIMP = 'ENOTIMP';
exports.REFUSED = 'EREFUSED';
exports.BADQUERY = 'EBADQUERY';
exports.ADNAME = 'EADNAME';
exports.BADNAME = 'EBADNAME';
exports.BADFAMILY = 'EBADFAMILY';
exports.BADRESP = 'EBADRESP';
Expand Down

1 comment on commit d37e551

@rvagg
Copy link

@rvagg rvagg commented on d37e551 Sep 30, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for future reference, this commit has a bad PR-URL, should be nodejs#3076

Please sign in to comment.