Description: Fix path for native binding.
 This code is licensed same as upstream project: Expat (a.k.a. "MIT").
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2011-12-04

--- a/lib/native/index.js
+++ b/lib/native/index.js
@@ -10,10 +10,10 @@
 //TODO remove on v1.0.0
 try {
   //v0.5.x
-  binding = require(__dirname + '/../../build/Release/binding.node');
+  binding = require(__dirname + '/binding.node');
 } catch(e) {
   //v0.4.x
-  binding = require(__dirname + '/../../build/default/binding');
+  binding = require(__dirname + '/binding');
 }
 
 var Connection = binding.Connection;
