diff options
author | isaacs <i@izs.me> | 2012-02-18 15:01:35 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-02-18 15:34:57 -0800 |
commit | 0cdf85e28d57428a90026c6a402e624c1dcaabce (patch) | |
tree | 6248bdfed37d9d00409eb86dd3af5d6dda11cc35 /lib/dns.js | |
parent | 31721da4b120ca2b1c0b6b9e93ce8beb5e810da3 (diff) | |
download | node-new-0cdf85e28d57428a90026c6a402e624c1dcaabce.tar.gz |
Lint all the JavaScripts.
Diffstat (limited to 'lib/dns.js')
-rw-r--r-- | lib/dns.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dns.js b/lib/dns.js index 4be48ee672..834310810f 100644 --- a/lib/dns.js +++ b/lib/dns.js @@ -32,7 +32,7 @@ function errnoException(errorno, syscall) { // For backwards compatibility. libuv returns ENOENT on NXDOMAIN. if (errorno == 'ENOENT') { - errorno = 'ENOTFOUND' + errorno = 'ENOTFOUND'; } e.errno = e.code = errorno; |