Commit 473e2a1c authored by Sergey Lyubka's avatar Sergey Lyubka

Added <signal.h> for linux, and squashed warning in transfer_file_data()

parent 146cf1d1
......@@ -88,6 +88,7 @@ typedef struct _stati64 file_stat_t;
#include <dirent.h>
#include <unistd.h>
#include <pthread.h>
#include <signal.h>
#include <arpa/inet.h> // For inet_pton() when USE_IPV6 is defined
#include <netinet/in.h>
#include <sys/socket.h>
......@@ -3008,7 +3009,7 @@ static void close_local_endpoint(struct connection *conn) {
static void transfer_file_data(struct connection *conn) {
char buf[IOBUF_SIZE];
int n = read(conn->endpoint.fd, buf,
conn->cl < (int64_t) sizeof(buf) ? (int) conn->cl : sizeof(buf));
conn->cl < (int64_t) sizeof(buf) ? conn->cl : (int) sizeof(buf));
if (is_error(n)) {
close_local_endpoint(conn);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment