client_new: Send greeting using send() rather than write().

This is portable for win32 and fixes client logins there.
This commit is contained in:
Avuton Olrich 2010-05-08 16:48:01 -07:00
parent 136759a298
commit 8341daca4a

View File

@ -24,6 +24,12 @@
#include "permission.h"
#include <assert.h>
#include <sys/types.h>
#ifdef WIN32
#include <winsock2.h>
#else
#include <sys/socket.h>
#endif
#include <unistd.h>
#ifdef HAVE_LIBWRAP
@ -111,7 +117,7 @@ void client_new(int fd, const struct sockaddr *sa, size_t sa_length, int uid)
client->send_buf_used = 0;
(void)write(fd, GREETING, sizeof(GREETING) - 1);
(void)send(fd, GREETING, sizeof(GREETING) - 1, 0);
client_list_add(client);