diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2016-12-02 16:35:09 +0100 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2016-12-12 23:09:21 +0100 |
commit | 0dde584882ade13dc9708d611fbf69b0ae8a9e48 (patch) | |
tree | 7e17f11a520d4447db0ced7edee74d8871c7c2c1 /net/ceph/auth_x.c | |
parent | 5c056fdc5b474329037f2aa18401bd73033e0ce0 (diff) | |
download | talos-obmc-linux-0dde584882ade13dc9708d611fbf69b0ae8a9e48.tar.gz talos-obmc-linux-0dde584882ade13dc9708d611fbf69b0ae8a9e48.zip |
libceph: drop len argument of *verify_authorizer_reply()
The length of the reply is protocol-dependent - for cephx it's
ceph_x_authorize_reply. Nothing sensible can be passed from the
messenger layer anyway.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Reviewed-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'net/ceph/auth_x.c')
-rw-r--r-- | net/ceph/auth_x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/auth_x.c b/net/ceph/auth_x.c index b216131915e7..2034fb926670 100644 --- a/net/ceph/auth_x.c +++ b/net/ceph/auth_x.c @@ -623,7 +623,7 @@ static int ceph_x_update_authorizer( } static int ceph_x_verify_authorizer_reply(struct ceph_auth_client *ac, - struct ceph_authorizer *a, size_t len) + struct ceph_authorizer *a) { struct ceph_x_authorizer *au = (void *)a; void *p = au->enc_buf; |