Index: afsutil.h =================================================================== RCS file: /cvs/openafs/src/util/afsutil.h,v retrieving revision 1.2 diff -u -r1.2 afsutil.h --- afsutil.h 2000/11/04 10:06:02 1.2 +++ afsutil.h 2001/03/25 03:52:31 @@ -108,9 +108,9 @@ * early in name. */ typedef char lb64_string_t[12]; -char *int64_to_flipbase64(b64_string_t s, u_int64_t a); +char *int64_to_flipbase64(b64_string_t s, uint64_t a); int64_t flipbase64_to_int64(char *s); -#define int32_to_flipbase64(S, A) int64_to_flipbase64(S, (u_int64_t)(A)) +#define int32_to_flipbase64(S, A) int64_to_flipbase64(S, (uint64_t)(A)) #endif /* This message preserves our ability to license AFS to the U.S. Government Index: flipbase64.c =================================================================== RCS file: /cvs/openafs/src/util/flipbase64.c,v retrieving revision 1.2 diff -u -r1.2 flipbase64.c --- flipbase64.c 2000/11/04 10:06:04 1.2 +++ flipbase64.c 2001/03/25 03:52:31 @@ -27,7 +27,7 @@ * The supplied string 's' must be at least 12 bytes long. * lb64_string in stds.h provides a typedef to get the length. */ -char *int64_to_flipbase64(lb64_string_t s, u_int64_t a) +char *int64_to_flipbase64(lb64_string_t s, uint64_t a) { int i, j; int64_t n;