From 278809058115146b1d66956ebbc4cd143bb6909f Mon Sep 17 00:00:00 2001 From: samnoble Date: Wed, 15 Aug 2001 01:13:25 +0000 Subject: [PATCH] Changed the datatypes in uidgidset to be uid_t and gid_t rather than int. --- etc/afpd/uid.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/afpd/uid.h b/etc/afpd/uid.h index 8eb27e71..859b4a55 100644 --- a/etc/afpd/uid.h +++ b/etc/afpd/uid.h @@ -1,5 +1,5 @@ /* - * $Id: uid.h,v 1.3 2001-06-27 14:53:16 rufustfirefly Exp $ + * $Id: uid.h,v 1.4 2001-08-15 01:13:25 samnoble Exp $ * code: jeff@univrel.pr.uconn.edu */ @@ -13,8 +13,8 @@ /* set up a structure for this */ typedef struct uidgidset_t { - int uid; - int gid; + uid_t uid; + gid_t gid; } uidgidset; /* functions to save and restore uid/gid pairs */ -- 2.39.2