Skip to content

Commit

Permalink
IMAP: fix return value type when reading from mime stream
Browse files Browse the repository at this point in the history
  • Loading branch information
pjstevns committed Jul 8, 2013
1 parent ce74ebb commit 4e25b6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbmail-imapsession.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ extern ServerConfig_T *server_conf;
static void send_data(ImapSession *self, GMimeStream *stream, int cnt)
{
char buf[SEND_BUF_SIZE];
size_t l;
ssize_t l;
int got = 0, want = cnt;
int serr = 0;
int loop = LOOPMAX;
Expand Down

0 comments on commit 4e25b6d

Please sign in to comment.