diff --git a/appl/rsh/rsh.c b/appl/rsh/rsh.c index ad8c05f36..8e471b4d9 100644 --- a/appl/rsh/rsh.c +++ b/appl/rsh/rsh.c @@ -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; diff --git a/kpasswd/kpasswdd.c b/kpasswd/kpasswdd.c index 9917e661d..af4345239 100644 --- a/kpasswd/kpasswdd.c +++ b/kpasswd/kpasswdd.c @@ -567,7 +567,7 @@ doit (int port) while(exit_flag == 0) { int ret; - struct fd_set fdset = real_fdset; + fd_set fdset = real_fdset; ret = select (maxfd + 1, &fdset, NULL, NULL, NULL); if (ret < 0) diff --git a/lib/krb5/changepw.c b/lib/krb5/changepw.c index dd7d3d00a..ce747da63 100644 --- a/lib/krb5/changepw.c +++ b/lib/krb5/changepw.c @@ -316,7 +316,7 @@ krb5_change_password (krb5_context context, KRB5_AUTH_CONTEXT_DO_SEQUENCE); for (i = 0; i < 5; ++i) { - struct fd_set fdset; + fd_set fdset; struct timeval tv; ret = send_request (context, diff --git a/lib/krb5/send_to_kdc.c b/lib/krb5/send_to_kdc.c index aba0ca238..c7bde6306 100644 --- a/lib/krb5/send_to_kdc.c +++ b/lib/krb5/send_to_kdc.c @@ -47,7 +47,7 @@ send_and_recv (int fd, const krb5_data *req, krb5_data *rep) { - struct fd_set fdset; + fd_set fdset; struct timeval timeout; int ret; int nbytes;