]> git.saurik.com Git - apple/libinfo.git/blobdiff - rpc.subproj/auth_unix.h
Libinfo-517.30.1.tar.gz
[apple/libinfo.git] / rpc.subproj / auth_unix.h
index a26f59a9ce641c5f23203058d8bd93cfafab1909..496defb79a9f22c6e3a79aba6a6e3c7e23e9b0bc 100644 (file)
@@ -51,7 +51,7 @@
  *
  *     from: @(#)auth_unix.h 1.8 88/02/08 SMI
  *     from: @(#)auth_unix.h   2.2 88/07/29 4.0 RPCSRC
  *
  *     from: @(#)auth_unix.h 1.8 88/02/08 SMI
  *     from: @(#)auth_unix.h   2.2 88/07/29 4.0 RPCSRC
- *     $Id: auth_unix.h,v 1.3 2001/01/17 19:05:42 majka Exp $
+ *     $Id: auth_unix.h,v 1.4 2004/10/28 21:58:21 emoy Exp $
  */
 
 /*
  */
 
 /*
  * Unix style credentials.
  */
 struct authunix_parms {
  * Unix style credentials.
  */
 struct authunix_parms {
-       u_long   aup_time;
+#ifdef __LP64__
+       unsigned int     aup_time;
+#else
+       unsigned long    aup_time;
+#endif
        char    *aup_machname;
        int      aup_uid;
        int      aup_gid;
        char    *aup_machname;
        int      aup_uid;
        int      aup_gid;
-       u_int    aup_len;
+       unsigned int     aup_len;
        int     *aup_gids;
 };
 
        int     *aup_gids;
 };