]> arthur.barton.de Git - netatalk.git/commitdiff
Changed the datatypes in uidgidset to be uid_t and gid_t rather than int.
authorsamnoble <samnoble>
Wed, 15 Aug 2001 01:13:25 +0000 (01:13 +0000)
committersamnoble <samnoble>
Wed, 15 Aug 2001 01:13:25 +0000 (01:13 +0000)
etc/afpd/uid.h

index 8eb27e71d66d18310d7610d182d56c3adcb03bfe..859b4a559f95c86392a10a7a935d35771e660428 100644 (file)
@@ -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 */