diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | openbsd-compat/bsd-nextstep.h | 5 |
2 files changed, 7 insertions, 2 deletions
@@ -9,6 +9,8 @@ | |||
9 | - (djm) Make scp work on systems without 64-bit ints | 9 | - (djm) Make scp work on systems without 64-bit ints |
10 | - tim@mindrot.org 2001/03/18 18:28:39 [defines.h] | 10 | - tim@mindrot.org 2001/03/18 18:28:39 [defines.h] |
11 | move HAVE_LONG_LONG_INT where it works | 11 | move HAVE_LONG_LONG_INT where it works |
12 | - Use 'NGROUPS' for NeXT Since 'MAX_NGROUPS' is wrapped up in -lposix | ||
13 | stuff. Change suggested by Mark Miller <markm@swoon.net> | ||
12 | 14 | ||
13 | 20010318 | 15 | 20010318 |
14 | - (bal) Fixed scp type casing issue which causes "scp: protocol error: | 16 | - (bal) Fixed scp type casing issue which causes "scp: protocol error: |
@@ -4608,4 +4610,4 @@ | |||
4608 | - Wrote replacements for strlcpy and mkdtemp | 4610 | - Wrote replacements for strlcpy and mkdtemp |
4609 | - Released 1.0pre1 | 4611 | - Released 1.0pre1 |
4610 | 4612 | ||
4611 | $Id: ChangeLog,v 1.976 2001/03/19 02:27:26 tim Exp $ | 4613 | $Id: ChangeLog,v 1.977 2001/03/19 03:01:56 mouring Exp $ |
diff --git a/openbsd-compat/bsd-nextstep.h b/openbsd-compat/bsd-nextstep.h index 1121d4d16..674fbbfe3 100644 --- a/openbsd-compat/bsd-nextstep.h +++ b/openbsd-compat/bsd-nextstep.h | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* $Id: bsd-nextstep.h,v 1.4 2001/02/13 02:18:50 mouring Exp $ */ | 24 | /* $Id: bsd-nextstep.h,v 1.5 2001/03/19 03:01:57 mouring Exp $ */ |
25 | 25 | ||
26 | #ifndef _NEXT_POSIX_H | 26 | #ifndef _NEXT_POSIX_H |
27 | #define _NEXT_POSIX_H | 27 | #define _NEXT_POSIX_H |
@@ -29,6 +29,9 @@ | |||
29 | #ifdef HAVE_NEXT | 29 | #ifdef HAVE_NEXT |
30 | #include <sys/dir.h> | 30 | #include <sys/dir.h> |
31 | 31 | ||
32 | /* NGROUPS_MAX is behind -lposix. Use the BSD version which is NGROUPS */ | ||
33 | #define NGROUPS_MAX NGROUPS | ||
34 | |||
32 | /* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */ | 35 | /* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */ |
33 | #define dirent direct | 36 | #define dirent direct |
34 | 37 | ||