diff options
| author | Trond Myklebust <trond.myklebust@fys.uio.no> | 2003-10-07 12:52:45 -0400 |
|---|---|---|
| committer | Trond Myklebust <trond.myklebust@fys.uio.no> | 2003-10-07 12:52:45 -0400 |
| commit | 874ce338c43b236f043d9ebc4ed2adaca23e7326 (patch) | |
| tree | 33c7bd9ad8e874bd9000b220e6553b7ba892839f /include/linux/nfs4.h | |
| parent | 1a7bc91499344d6be96098622829e297206669eb (diff) | |
Clean up the nfs4_stateid and nfs4_verifier typedefs.
Convert them into structures
Diffstat (limited to 'include/linux/nfs4.h')
| -rw-r--r-- | include/linux/nfs4.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index a65be432b9f5..8bb512eb2b43 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h @@ -46,8 +46,8 @@ #define NFS4_ACE_SYSTEM_AUDIT_ACE_TYPE 2 #define NFS4_ACE_SYSTEM_ALARM_ACE_TYPE 3 -typedef char nfs4_verifier[NFS4_VERIFIER_SIZE]; -typedef char nfs4_stateid[16]; +typedef struct { char data[NFS4_VERIFIER_SIZE]; } nfs4_verifier; +typedef struct { char data[16]; } nfs4_stateid; enum nfs_opnum4 { OP_ACCESS = 3, |
