From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 1 Oct 1997 10:33:17 -0500 From: G. David Butler gdb@dbSystems.com Subject: [9fans] The user 'none' Topicbox-Message-UUID: 67acdf54-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19971001153317.sRquz7LgfQNSCnxXHUkhsUIZt9VAogHuajs2hVHDV0U@z> Russ from rsc@plan9.bell-labs.com suggested a different algorithm. Instead of: ... if none and write access requested not if ingroup and group is allowed requested access ok else not ... Try ... if ingroup if not none and group is allowed requested access OR if none and *other* is allowed requested access ok else not ... This says that if none is a member of a group and that group has allowed others access, than none gets access too. Better? David Butler gdb@dbSystems.com