From 84271d0f2b69811b97fd36d280d5f61a384567af Mon Sep 17 00:00:00 2001 From: Brian White Date: Sun, 13 Nov 2011 06:41:17 -0500 Subject: [PATCH] Oops --- imap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imap.js b/imap.js index 3773e8c..94e2c23 100644 --- a/imap.js +++ b/imap.js @@ -1510,7 +1510,7 @@ function extend() { return target; }; -function bufferAppend = function(buf1, buf2) { +function bufferAppend(buf1, buf2) { var newBuf = new Buffer(buf1.length + buf2.length); buf1.copy(newBuf, 0, 0); if (Buffer.isBuffer(buf2))