diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-01-20 03:55:19 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-01-20 03:55:19 +0000 |
commit | 0c29d51fc978a0a4e13efb931a75d2e44cf1b0ff (patch) | |
tree | 4793ff53c7ac4940bd14022077453eabc7185436 /usr.bin | |
parent | 2957f1356707949826212e025a43a26ab4cc9dfc (diff) |
SELECT_FD_TYPE is obsolete
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rdist/child.c | 5 | ||||
-rw-r--r-- | usr.bin/rdist/config.h | 9 |
2 files changed, 3 insertions, 11 deletions
diff --git a/usr.bin/rdist/child.c b/usr.bin/rdist/child.c index 504b386607e..1ba56ebe1d3 100644 --- a/usr.bin/rdist/child.c +++ b/usr.bin/rdist/child.c @@ -1,4 +1,4 @@ -/* $OpenBSD: child.c,v 1.23 2014/07/05 07:57:43 guenther Exp $ */ +/* $OpenBSD: child.c,v 1.24 2015/01/20 03:55:18 guenther Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -365,8 +365,7 @@ waitup(void) debugmsg(DM_MISC, "waitup() Call select(), activechildren=%d\n", activechildren); - count = select(rchildfdsn+1, (SELECT_FD_TYPE *) rchildfdsp, - NULL, NULL, NULL); + count = select(rchildfdsn+1, rchildfdsp, NULL, NULL, NULL); debugmsg(DM_MISC, "waitup() select returned %d activechildren = %d\n", count, activechildren); diff --git a/usr.bin/rdist/config.h b/usr.bin/rdist/config.h index 3d182911c7e..71a094bf23c 100644 --- a/usr.bin/rdist/config.h +++ b/usr.bin/rdist/config.h @@ -1,4 +1,4 @@ -/* $OpenBSD: config.h,v 1.10 2014/07/12 03:32:00 guenther Exp $ */ +/* $OpenBSD: config.h,v 1.11 2015/01/20 03:55:18 guenther Exp $ */ /* * Copyright (c) 1993 Michael A. Cooper @@ -98,11 +98,4 @@ #define SL_NOTICE LOG_NOTICE /* General notices */ #define SL_DEBUG LOG_DEBUG /* Debugging */ -/* - * Arg types to select(2) - */ -#ifndef SELECT_FD_TYPE -#define SELECT_FD_TYPE fd_set -#endif - #endif /* __config_h__ */ |