@@ -192,7 +192,7 @@ Client.prototype.putStream = function(stream, filename, headers, fn){
       fn(null, res);
     });
     stream
-      .on('error', function(err){fn(null, err); })
+      .on('error', function(err){fn(err); })
       .on('data', function(chunk){ req.write(chunk); })
       .on('end', function(){ req.end(); });
   });