From 6d85802100cbc706711a0b2482efa2d708efe463 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 28 Apr 2010 15:28:21 -0700 Subject: [PATCH] basicRequest -> module.requireNative --- src/node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node.js b/src/node.js index ef3441e8c1..216f50d7b4 100644 --- a/src/node.js +++ b/src/node.js @@ -141,8 +141,8 @@ var stdin; process.openStdin = function () { if (stdin) return stdin; - var net = basicRequire('net'), - fs = basicRequire('fs'), + var net = module.requireNative('net'), + fs = module.requireNative('fs'), fd = process.binding('stdio').openStdin(); if (process.binding('stdio').isStdinBlocking()) {