summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-04 20:44:01 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-04 20:44:01 +0000
commit03f07b45cdf700a39c879b1d3ace2a72611c4e33 (patch)
treeb7129b8a52a947ac9df3f3328f48902fa4680dd1
parent75713c9da77714484249dca8c6441e8266094bb0 (diff)
Oops.. =) mispelt NGROUPS_MAX.
-rw-r--r--ChangeLog2
-rw-r--r--defines.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c69e437f3..c83df5a3f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
120010105 120010105
2 - (bal) Disable groupaccess by setting NGROUP_MAX to 0 for platforms 2 - (bal) Disable groupaccess by setting NGROUP_MAX to 0 for platforms
3 that don't have NGROUP_MAX. 3 that don't have NGROUPS_MAX.
4 4
520010104 520010104
6 - (bal) I think this is the last of the bsd-*.h that don't belong. 6 - (bal) I think this is the last of the bsd-*.h that don't belong.
diff --git a/defines.h b/defines.h
index 51fd7b3e0..1c2307090 100644
--- a/defines.h
+++ b/defines.h
@@ -89,8 +89,8 @@ enum
89# define STDERR_FILENO 2 89# define STDERR_FILENO 2
90#endif 90#endif
91 91
92#ifndef NGROUP_MAX /* Disable groupaccess if NGROUP_MAX is not set */ 92#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
93#define NGROUP_MAX 0 93#define NGROUPS_MAX 0
94#endif 94#endif
95 95
96#ifndef O_NONBLOCK /* Non Blocking Open */ 96#ifndef O_NONBLOCK /* Non Blocking Open */