summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/groupaccess.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move checks for lists of users or groups into their own function.dtucker2019-03-061-2/+3
| | | | | This is a no-op on OpenBSD but will make things easier in -portable, eg on systems where these checks should be case-insensitive. ok djm@
* Remove pattern length argument from match_pattern_list(),djm2015-05-041-4/+2
| | | | | | | | | | we only ever use it for strlen(pattern). Prompted by hanno AT hboeck.de pointing an out-of-bound read error caused by an incorrect pattern length found using AFL and his own tools. ok markus@
* Reduce use of <sys/param.h> and transition to <limits.h> throughout.deraadt2015-01-201-2/+2
| | | | ok djm markus
* bye, bye xfree(); ok markus@djm2013-05-171-2/+3
|
* support negation of groups in "Match group" block (bz#1315); ok dtucker@djm2008-07-041-1/+26
|
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-4/+3
| | | | | ok djm, sort of ok stevesk makes the pain stop in one easy step
* move #include <sys/param.h> out of includes.hstevesk2006-07-261-1/+2
|
* move #include <unistd.h> out of includes.hstevesk2006-07-171-1/+2
|
* move #include <grp.h> out of includes.hstevesk2006-07-021-1/+5
|
* Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatdjm2006-03-251-0/+1
| | | | Theo nuked - our scripts to sync -portable need them in the files
* RCSID() can diederaadt2006-03-191-1/+0
|
* rename log() into logit() to avoid name conflict. markus ok, from netbsditojun2003-04-081-2/+2
|
* $OpenBSD$ and RCSID() cleanup: don't use RCSID() in .h files; addstevesk2002-03-041-2/+1
| | | | | missing RCSID() to .c files and remove dup /*$OpenBSD$*/ from .c files. ok markus@
* remove comments from .h, since they are cut&paste from the .c filesmarkus2001-06-261-1/+12
| | | | and out of sync
* $OpenBSD$niklas2001-01-291-0/+2
|
* split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.markus2001-01-211-1/+1
| | | | rename util.[ch] -> misc.[ch]
* support supplementary group in {Allow,Deny}Groupsmarkus2001-01-131-0/+76
from stevesk@pobox.com