getce64-cleanup-20040624

get rid of 64bit client & !64bit env case: won't work as is.
This commit is contained in:
Derrick Brashear 2004-06-24 17:56:20 +00:00
parent 62c7e9dafc
commit c91503f32d

View File

@ -221,16 +221,12 @@ SRXAFSCB_GetCE64(struct rx_call *a_call, afs_int32 a_index,
a_result->lock.pid_writer = 0;
a_result->lock.src_indicator = 0;
#endif /* AFS_OSF20_ENV */
#ifdef AFS_64BIT_ENV
a_result->Length = tvc->m.Length;
#else /* AFS_64BIT_ENV */
#ifdef AFS_64BIT_CLIENT
a_result->Length = tvc->m.Length;
#else /* AFS_64BIT_CLIENT */
#if !defined(AFS_64BIT_ENV)
a_result->Length.high = 0;
a_result->Length.low = tvc->m.Length;
#endif /* AFS_64BIT_CLIENT */
#endif /* AFS_64BIT_ENV */
#else
a_result->Length = tvc->m.Length;
#endif
a_result->DataVersion = hgetlo(tvc->m.DataVersion);
a_result->callback = afs_data_pointer_to_int32(tvc->callback); /* XXXX Now a pointer; change it XXXX */
a_result->cbExpires = tvc->cbExpires;