]> andersk Git - openssh.git/commitdiff
20010105
authormouring <mouring>
Sun, 4 Feb 2001 20:27:44 +0000 (20:27 +0000)
committermouring <mouring>
Sun, 4 Feb 2001 20:27:44 +0000 (20:27 +0000)
 - (bal) Disable groupaccess by setting NGROUP_MAX to 0 for platforms
   that don't have NGROUP_MAX.

ChangeLog
defines.h

index 73b4a697304e5032bca4cea60abf31d89f0c2b56..c69e437f300827db860900318fe0cf2999fc57f3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20010105
+ - (bal) Disable groupaccess by setting NGROUP_MAX to 0 for platforms
+   that don't have NGROUP_MAX.
+
 20010104
  - (bal) I think this is the last of the bsd-*.h that don't belong.
  - (bal) Minor Makefile fix
index 087ad2af04b41331d8211c94e5ccb04934d5ef08..51fd7b3e02c5c0e8bf6448932693d8b879d71b8d 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -89,6 +89,10 @@ enum
 # define STDERR_FILENO   2
 #endif                   
 
+#ifndef NGROUP_MAX     /* Disable groupaccess if NGROUP_MAX is not set */
+#define NGROUP_MAX 0
+#endif
+
 #ifndef O_NONBLOCK     /* Non Blocking Open */
 # define O_NONBLOCK      00004 
 #endif
This page took 0.049823 seconds and 5 git commands to generate.