Date: Thu, 13 Dec 2001 19:12:27 +0000 From: Mark Murray <mark@grondar.za> To: standards@freebsd.org Subject: Wrong type for gid in include/gid.h? Message-ID: <200112131912.fBDJCRU79566@grimreaper.grondar.org>
index | next in thread | raw e-mail
Hi
This patch fixes a few warnings in usr.bin and has worked
fine for me for N make worlds and about a month of runtime.
Any objections to me committing this?
M
Index: grp.h
===================================================================
RCS file: /home/ncvs/src/include/grp.h,v
retrieving revision 1.3
diff -u -d -r1.3 grp.h
--- grp.h 7 May 1997 19:59:59 -0000 1.3
+++ grp.h 7 Dec 2001 20:48:47 -0000
@@ -48,7 +48,7 @@
struct group {
char *gr_name; /* group name */
char *gr_passwd; /* group password */
- int gr_gid; /* group id */
+ gid_t gr_gid; /* group id */
char **gr_mem; /* group members */
};
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-standards" in the body of the message
home |
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200112131912.fBDJCRU79566>
