From: Erik Faye-Lund Date: Mon, 19 Oct 2009 15:42:05 +0000 (+0200) Subject: imap-send: fix compilation-error on Windows X-Git-Tag: v1.6.6-rc0~40^2~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d23b1ecf11ee48cd9e266ada06f1b8298b917e92;p=git.git imap-send: fix compilation-error on Windows mmsystem.h (included from windows.h) defines DRV_OK to 1. To avoid an error due to DRV_OK redefenition, this patch undefines the old definition (i.e the one from mmsystem.h) before defining DRV_OK. Signed-off-by: Erik Faye-Lund Signed-off-by: Junio C Hamano --- diff --git a/imap-send.c b/imap-send.c index 72ed64012..69e614245 100644 --- a/imap-send.c +++ b/imap-send.c @@ -94,6 +94,7 @@ struct msg_data { unsigned int crlf:1; }; +#undef DRV_OK #define DRV_OK 0 #define DRV_MSG_BAD -1 #define DRV_BOX_BAD -2