Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
net: fix throw error
Browse files Browse the repository at this point in the history
Thanks Tobi
  • Loading branch information
ry committed Aug 23, 2011
1 parent 509a676 commit 827b9c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/net.js
Expand Up @@ -1053,7 +1053,7 @@ Server.prototype.listen = function() {
if (err.errno == ENOENT) {
self._doListen(path);
} else {
throw r;
throw err;
}
} else {
if (!r.isSocket()) {
Expand Down

0 comments on commit 827b9c5

Please sign in to comment.