From 127dfbac8b678159e6ea5236b93e83e2c14cf87b Mon Sep 17 00:00:00 2001 From: "intae, jeon" Date: Tue, 8 Nov 2016 09:53:38 +0900 Subject: [PATCH] fix bug for 64bit Change-Id: Ifd054ebd2837af5c15d3bb1f5b0bf8004282d668 Signed-off-by: intae, jeon --- imap-2007e/c-client/mail.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/imap-2007e/c-client/mail.h b/imap-2007e/c-client/mail.h index 41c931f..5c24033 100755 --- a/imap-2007e/c-client/mail.h +++ b/imap-2007e/c-client/mail.h @@ -7,7 +7,7 @@ * * http://www.apache.org/licenses/LICENSE-2.0 * - * + * * ======================================================================== */ @@ -456,7 +456,7 @@ #define FT_SEARCHLOOKAHEAD (long) 0x400 /* stringstruct return hack */ #define FT_RETURNSTRINGSTRUCT (long) 0x800 -#define FT_SELECTEDHDRS (long) 0x1000 /* g.shyamakshi@samsung.com +#define FT_SELECTEDHDRS (long) 0x1000 /* g.shyamakshi@samsung.com Search selected headers - From, To, cc, bcc, subject, date, priority, read reciept, message-id, retrun path*/ @@ -1101,11 +1101,11 @@ QUOTALIST { /* Structure for mail driver dispatch */ -#define DRIVER struct driver +#define DRIVER struct driver /* Mail I/O stream */ - + typedef struct mail_stream { DRIVER *dtb; /* dispatch table for this driver */ void *local; /* pointer to driver local data */ @@ -1625,7 +1625,8 @@ DRIVER { #define MM_FLAGS mm_flags #define MM_NOTIFY mm_notify #define MM_STATUS mm_status -/* #define MM_LOG mm_log */ +#define MM_LOG mm_log +/* #define MM_LOG(str, errflg) \ do {\ char *path_log = g_strdup_printf("%s (%d)> %s", __FUNCTION__, __LINE__, str);\ @@ -1633,7 +1634,7 @@ DRIVER { g_free(path_log);\ path_log = NULL;\ } while(0) - +*/ #define MM_CRITICAL mm_critical #define MM_NOCRITICAL mm_nocritical #define MM_DISKERROR mm_diskerror -- 2.7.4