]> andersk Git - openssh.git/commitdiff
- Use 'NGROUPS' for NeXT Since 'MAX_NGROUPS' is wrapped up in -lposix
authormouring <mouring>
Mon, 19 Mar 2001 03:01:56 +0000 (03:01 +0000)
committermouring <mouring>
Mon, 19 Mar 2001 03:01:56 +0000 (03:01 +0000)
   stuff.  Change suggested by Mark Miller <markm@swoon.net>

ChangeLog
openbsd-compat/bsd-nextstep.h

index 154a0779872d808001ea10a7442e6d03eee88692..1565c963bcdc2ca28c7dbab2086f63f80d260a90 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,8 @@
  - (djm) Make scp work on systems without 64-bit ints
  - tim@mindrot.org 2001/03/18 18:28:39 [defines.h]
    move HAVE_LONG_LONG_INT where it works
+ - Use 'NGROUPS' for NeXT Since 'MAX_NGROUPS' is wrapped up in -lposix
+   stuff.  Change suggested by Mark Miller <markm@swoon.net>
 
 20010318
  - (bal) Fixed scp type casing issue which causes "scp: protocol error: 
index 8d44c224f389dbb84adad872e0136af08a5d061e..f57162bd3df48aafc64f28ce1e7c40223bc9f398 100644 (file)
@@ -29,6 +29,9 @@
 #ifdef HAVE_NEXT
 #include <sys/dir.h>
 
+/* NGROUPS_MAX is behind -lposix.  Use the BSD version which is NGROUPS */
+#define NGROUPS_MAX NGROUPS
+
 /* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */
 #define dirent direct
 
This page took 0.053116 seconds and 5 git commands to generate.