diff options
Diffstat (limited to 'fs/afs/fsclient.c')
-rw-r--r-- | fs/afs/fsclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/afs/fsclient.c b/fs/afs/fsclient.c index 5c1b7a031509..89b684c957b9 100644 --- a/fs/afs/fsclient.c +++ b/fs/afs/fsclient.c @@ -148,9 +148,9 @@ static void xdr_decode_AFSCallBack(const __be32 **_bp, struct afs_callback *cb = &scb->callback; const __be32 *bp = *_bp; - cb->version = ntohl(*bp++); + bp++; /* version */ cb->expires_at = xdr_decode_expiry(call, ntohl(*bp++)); - cb->type = ntohl(*bp++); + bp++; /* type */ scb->have_cb = true; *_bp = bp; } |