changed struct fd_set' to fd_set'

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4074 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-11-29 06:17:18 +00:00
parent 45fd07a5a9
commit dce96a31c3
4 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ static int input; /* Read from stdin */
static int
loop (int s, int errsock)
{
struct fd_set real_readset;
fd_set real_readset;
int count = 2;
FD_ZERO(&real_readset);
@@ -69,7 +69,7 @@ loop (int s, int errsock)
for (;;) {
int ret;
struct fd_set readset;
fd_set readset;
char buf[RSH_BUFSIZ];
readset = real_readset;