Some tiny fixes.

Submitted by:
Reviewed by:
PR:

Submitted by:
Reviewed by:
PR:
This commit is contained in:
Bodo Möller 1999-04-14 20:17:23 +00:00
parent 8f7de4f04c
commit f0f1b4e400
3 changed files with 4 additions and 3 deletions

View file

@ -442,8 +442,8 @@ re_start:
ssl_pending = read_ssl && SSL_pending(con);
if (!ssl_pending)
#ifndef WINDOWS
{
#ifndef WINDOWS
if (tty_on)
{
if (read_tty) FD_SET(fileno(stdin),&readfds);

View file

@ -345,7 +345,8 @@ char *ip;
#if defined SOL_SOCKET && defined SO_REUSEADDR
{
int j = 1;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &j, sizeof j);
setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
(const void *) &j, sizeof j);
}
#endif
if (bind(s,(struct sockaddr *)&server,sizeof(server)) == -1)

View file

@ -56,7 +56,7 @@
* [including the GNU Public Licence.]
*/
#if !defined(MSDOS) && !defined(VMS)
#if !defined(MSDOS) && !defined(VMS) && !defined(WIN32)
#include <unistd.h>
/* If unistd.h defines _POSIX_VERSION, we conclude that we
* are on a POSIX system and have sigaction and termios. */