update version to 0.7
detect short write in write_strip() fix compilation warnings with gcc-2.95.4
This commit is contained in:
parent
c84a888a7d
commit
087fb470e7
1
config.c
1
config.c
|
@ -27,6 +27,7 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include "isync.h"
|
#include "isync.h"
|
||||||
|
|
||||||
config_t *boxes = 0;
|
config_t *boxes = 0;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
AC_INIT(isync.h)
|
AC_INIT(isync.h)
|
||||||
AM_INIT_AUTOMAKE(isync,0.6)
|
AM_INIT_AUTOMAKE(isync,0.7)
|
||||||
AM_PROG_CC_STDC
|
AM_PROG_CC_STDC
|
||||||
AC_ARG_WITH(ssl-dir, [ --with-ssl-dir=DIR location where openssl is insalled],
|
AC_ARG_WITH(ssl-dir, [ --with-ssl-dir=DIR location where openssl is insalled],
|
||||||
[if test -d $withval/lib; then
|
[if test -d $withval/lib; then
|
||||||
|
|
11
imap.c
11
imap.c
|
@ -820,7 +820,7 @@ write_strip (int fd, char *buf, size_t len)
|
||||||
{
|
{
|
||||||
size_t start = 0;
|
size_t start = 0;
|
||||||
size_t end = 0;
|
size_t end = 0;
|
||||||
int n;
|
ssize_t n;
|
||||||
|
|
||||||
while (start < len)
|
while (start < len)
|
||||||
{
|
{
|
||||||
|
@ -832,9 +832,18 @@ write_strip (int fd, char *buf, size_t len)
|
||||||
perror ("write");
|
perror ("write");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
else if ((size_t) n != end - start)
|
||||||
|
{
|
||||||
|
/* short write, try again */
|
||||||
|
start += n;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* write complete */
|
||||||
end++;
|
end++;
|
||||||
start = end;
|
start = end;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user