SELECT_FD_TYPE is obsolete
authorguenther <guenther@openbsd.org>
Tue, 20 Jan 2015 03:55:18 +0000 (03:55 +0000)
committerguenther <guenther@openbsd.org>
Tue, 20 Jan 2015 03:55:18 +0000 (03:55 +0000)
usr.bin/rdist/child.c
usr.bin/rdist/config.h

index 504b386..1ba56eb 100644 (file)
@@ -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);
index 3d18291..71a094b 100644 (file)
@@ -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
 #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__ */