X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=net.c;h=9ca5ceac95bc47f1b3becf71d83318894f8a719a;hp=9c646e9046859d006a307824a108e9825de70967;hb=9ebd69fa0ad93040ca37190e1b71683d027095e9;hpb=4b4c68de8d7390f966e46d9402d5499d2e8ee227 diff --git a/net.c b/net.c index 9c646e90..9ca5ceac 100644 --- a/net.c +++ b/net.c @@ -73,7 +73,7 @@ static int sendall(int fd, const char *buf, size_t *len) total += n; bytesleft -= n; if (total < *len) - PARA_DEBUG_LOG("short write (%d byte(s) left)", + PARA_DEBUG_LOG("short write (%zd byte(s) left)", *len - total); } *len = total; /* return number actually sent here */ @@ -130,7 +130,7 @@ int send_buffer(int fd, const char *buf) * * @return Positive on success, \p -E_SEND on errors. */ -__printf_2_3 int send_va_buffer(int fd, char *fmt, ...) +__printf_2_3 int send_va_buffer(int fd, const char *fmt, ...) { char *msg; int ret; @@ -253,7 +253,7 @@ int para_connect(int fd, struct sockaddr_in *their_addr) * * \sa accept(2). */ -int para_accept(int fd, void *addr, size_t size) +int para_accept(int fd, void *addr, socklen_t size) { int new_fd;