diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-06-26 06:33:08 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-06-26 06:33:08 +0000 |
commit | 38ff9051ba504cfdd1c2e9f02b248b2b71c2e9bf (patch) | |
tree | daf4bce5a7f7822fa8f958aabecbc26db6fa46ee /usr.bin/ssh/groupaccess.h | |
parent | d4aba5f28304432a57f9be423624f773dd99cc52 (diff) |
prototype pedant. not very creative...
- () -> (void)
- no variable names
Diffstat (limited to 'usr.bin/ssh/groupaccess.h')
-rw-r--r-- | usr.bin/ssh/groupaccess.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/groupaccess.h b/usr.bin/ssh/groupaccess.h index b4e5e42fc63..01e394f6919 100644 --- a/usr.bin/ssh/groupaccess.h +++ b/usr.bin/ssh/groupaccess.h @@ -1,4 +1,4 @@ -/* $OpenBSD: groupaccess.h,v 1.2 2001/01/29 01:58:15 niklas Exp $ */ +/* $OpenBSD: groupaccess.h,v 1.3 2001/06/26 06:32:52 itojun Exp $ */ /* * Copyright (c) 2001 Kevin Steves. All rights reserved. @@ -33,13 +33,13 @@ * Initialize group access list for user with primary (base) and * supplementary groups. Return the number of groups in the list. */ -int ga_init(const char *user, gid_t base); +int ga_init(const char *, gid_t); /* * Return 1 if one of user's groups is contained in groups. * Return 0 otherwise. Use match_pattern() for string comparison. */ -int ga_match(char * const *groups, int ngroups); +int ga_match(char * const *, int); /* * Free memory allocated for group access list. |