diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-07-25 05:31:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-07-25 05:31:04 +0000 |
commit | a051acee57a27a547746c93ffe492db4dcd785b7 (patch) | |
tree | 87438b429c37df04c19fdc25dfa47365da5b48fc /usr.bin/rdist/config.h | |
parent | 6320a12b698c60883333ef439725ea36b143e3c0 (diff) |
Updated to rdist 6.1.3. Used real snprintf() (instead of string length
in the format) since we have it.
Diffstat (limited to 'usr.bin/rdist/config.h')
-rw-r--r-- | usr.bin/rdist/config.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/rdist/config.h b/usr.bin/rdist/config.h index 76ea817fafc..06e24fb69b1 100644 --- a/usr.bin/rdist/config.h +++ b/usr.bin/rdist/config.h @@ -1,4 +1,4 @@ -/* * $OpenBSD: config.h,v 1.4 1996/06/26 05:38:10 deraadt Exp $*/ +/* * $OpenBSD: config.h,v 1.5 1996/07/25 05:31:01 millert Exp $*/ /* * Copyright (c) 1993 Michael A. Cooper * Copyright (c) 1993 Regents of the University of California. @@ -125,4 +125,11 @@ #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__ */ |