From: guenther Date: Tue, 20 Jan 2015 03:55:18 +0000 (+0000) Subject: SELECT_FD_TYPE is obsolete X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=951cc97263c1e0618bd95f7ec38d39dc6572ed25;p=openbsd SELECT_FD_TYPE is obsolete --- 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__ */