Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/libexec/ftpd gidlist is nolonger an array.



details:   https://anonhg.NetBSD.org/src/rev/c67ad1792257
branches:  trunk
changeset: 543228:c67ad1792257
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Feb 19 23:12:20 2003 +0000

description:
gidlist is nolonger an array.

diffstat:

 libexec/ftpd/extern.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 893d75b5bd2d -r c67ad1792257 libexec/ftpd/extern.h
--- a/libexec/ftpd/extern.h     Wed Feb 19 22:34:42 2003 +0000
+++ b/libexec/ftpd/extern.h     Wed Feb 19 23:12:20 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.h,v 1.45 2002/11/29 14:39:59 lukem Exp $        */
+/*     $NetBSD: extern.h,v 1.46 2003/02/19 23:12:20 matt Exp $ */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -306,7 +306,7 @@
 GLOBAL char            *emailaddr;
 GLOBAL int             form;
 GLOBAL int             gidcount;       /* number of entries in gidlist[] */
-GLOBAL gid_t           gidlist[NGROUPS_MAX];
+GLOBAL gid_t           *gidlist;
 GLOBAL int             hasyyerrored;
 GLOBAL char            hostname[MAXHOSTNAMELEN+1];
 GLOBAL char            homedir[MAXPATHLEN];



Home | Main Index | Thread Index | Old Index