summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-13 21:34:57 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-13 21:34:57 +0000
commit0e23ebcc8b022710a266982694f3e10e3f19e20b (patch)
tree5b26ff719b8a717f4c13a0e1101007b488e55a0b /openbsd-compat/bsd-misc.c
parentb7ae94dd0b90d126a5be2dd4362e6148980529aa (diff)
- (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com
Diffstat (limited to 'openbsd-compat/bsd-misc.c')
-rw-r--r--openbsd-compat/bsd-misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 680375ce6..fa48afea9 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -24,7 +24,7 @@
24 24
25#include "includes.h" 25#include "includes.h"
26 26
27RCSID("$Id: bsd-misc.c,v 1.7 2002/06/12 16:57:15 mouring Exp $"); 27RCSID("$Id: bsd-misc.c,v 1.8 2002/06/13 21:34:58 mouring Exp $");
28 28
29char *get_progname(char *argv0) 29char *get_progname(char *argv0)
30{ 30{
@@ -123,7 +123,7 @@ int truncate (const char *path, off_t length)
123 * Cygwin setgroups should be a noop. 123 * Cygwin setgroups should be a noop.
124 */ 124 */
125int 125int
126setgroups(size_t size, const git_t *list) 126setgroups(size_t size, const gid_t *list)
127{ 127{
128 return 0; 128 return 0;
129} 129}