summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2002-01-23 07:57:43 +0000
committerMartin Pool <mbp@samba.org>2002-01-23 07:57:43 +0000
commitd54765c44250fdef784f1d1d540690fe246048b6 (patch)
treefbc27854259845794b265294b15c924b010ce499
parent91262d5d3e6991035cd8c37b2d605c29d8c23da6 (diff)
downloadrsync-d54765c44250fdef784f1d1d540690fe246048b6.tar.gz
Just for variety we have some socklen_t fixes too.
-rw-r--r--socket.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/socket.c b/socket.c
index dc9c4441..a01499eb 100644
--- a/socket.c
+++ b/socket.c
@@ -1,5 +1,7 @@
/* -*- c-file-style: "linux" -*-
+ rsync -- fast file replication program
+
Copyright (C) 1992-2001 by Andrew Tridgell <tridge@samba.org>
Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
@@ -386,7 +388,7 @@ void start_accept_loop(int port, int (*fn)(int ))
fd_set fds;
int fd;
struct sockaddr_storage addr;
- int addrlen = sizeof(addr);
+ socklen_t addrlen = sizeof addr;
/* close log file before the potentially very long select so
file can be trimmed by another process instead of growing
@@ -569,7 +571,7 @@ void become_daemon(void)
char *client_addr(int fd)
{
struct sockaddr_storage ss;
- int length = sizeof(ss);
+ socklen_t length = sizeof ss;
static char addr_buf[100];
static int initialised;
@@ -599,7 +601,7 @@ static int get_sockaddr_family(const struct sockaddr_storage *ss)
char *client_name(int fd)
{
struct sockaddr_storage ss;
- int length = sizeof(ss);
+ socklen_t length = sizeof ss;
static char name_buf[100];
static char port_buf[100];
char *def = "UNKNOWN";