]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3/smbd: add const to get_lease_type() args
authorRalph Boehme <slow@samba.org>
Sat, 4 Mar 2017 12:55:55 +0000 (13:55 +0100)
committerKarolin Seeger <kseeger@samba.org>
Tue, 14 Mar 2017 11:49:24 +0000 (12:49 +0100)
Bug: https://bugzilla.samba.org/show_bug.cgi?id=7537

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
(cherry picked from commit 6924e72ade20e98ac470fcb6ba7120c61b06bb0f)

source3/smbd/oplock.c
source3/smbd/proto.h

index b94bc36ebbaf865c13ca3191e9eacd43a6d722c2..56b4499bff486375148b30a82d1c798b97033f96 100644 (file)
@@ -171,7 +171,8 @@ uint32_t map_oplock_to_lease_type(uint16_t op_type)
        return ret;
 }
 
-uint32_t get_lease_type(struct share_mode_data *d, struct share_mode_entry *e)
+uint32_t get_lease_type(const struct share_mode_data *d,
+                       const struct share_mode_entry *e)
 {
        if (e->op_type == LEASE_OPLOCK) {
                return d->leases[e->lease_idx].current_state;
index 4ba73162d5b947ee786882b1729c9f586eb8a6a3..77a3b21d02dd05ba4a03678b14c52e5818e5ca75 100644 (file)
@@ -679,7 +679,8 @@ NTSTATUS get_relative_fid_filename(connection_struct *conn,
 /* The following definitions come from smbd/oplock.c  */
 
 uint32_t map_oplock_to_lease_type(uint16_t op_type);
-uint32_t get_lease_type(struct share_mode_data *d, struct share_mode_entry *e);
+uint32_t get_lease_type(const struct share_mode_data *d,
+                       const struct share_mode_entry *e);
 bool update_num_read_oplocks(files_struct *fsp, struct share_mode_lock *lck);
 
 void break_kernel_oplock(struct messaging_context *msg_ctx, files_struct *fsp);