diff options
author | Tim Prouty <tprouty@samba.org> | 2009-07-07 17:27:50 -0700 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-07-07 18:02:53 -0700 |
commit | 0d9b2048823870363db1856b8f5113f35aeb6a08 (patch) | |
tree | 59a3d8e16b6b6d5d8e6dafc52daa7da3198f8a67 /source3/include | |
parent | 9aebdc25010548c00d64b02f827c80a6e8fee9bf (diff) | |
download | samba-0d9b2048823870363db1856b8f5113f35aeb6a08.tar.gz samba-0d9b2048823870363db1856b8f5113f35aeb6a08.tar.bz2 samba-0d9b2048823870363db1856b8f5113f35aeb6a08.zip |
s3: Remove unnecessary const qualifiers
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index fb10dd2af6..0315f304bb 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3474,8 +3474,7 @@ NTSTATUS can_set_delete_on_close(files_struct *fsp, bool delete_on_close, void set_delete_on_close_token(struct share_mode_lock *lck, const UNIX_USER_TOKEN *tok); void set_delete_on_close_lck(struct share_mode_lock *lck, bool delete_on_close, const UNIX_USER_TOKEN *tok); bool set_delete_on_close(files_struct *fsp, bool delete_on_close, const UNIX_USER_TOKEN *tok); -bool set_sticky_write_time(const struct file_id fileid, - struct timespec write_time); +bool set_sticky_write_time(struct file_id fileid, struct timespec write_time); bool set_write_time(struct file_id fileid, struct timespec write_time); int share_mode_forall(void (*fn)(const struct share_mode_entry *, const char *, const char *, void *), @@ -6243,9 +6242,9 @@ int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname, uint32 dosmode, const char *parent_dir, bool newfile); int file_ntimes(connection_struct *conn, const struct smb_filename *smb_fname, struct smb_file_time *ft); -bool set_sticky_write_time_path(struct file_id fileid, - const struct timespec mtime); -bool set_sticky_write_time_fsp(struct files_struct *fsp, const struct timespec mtime); +bool set_sticky_write_time_path(struct file_id fileid, struct timespec mtime); +bool set_sticky_write_time_fsp(struct files_struct *fsp, + struct timespec mtime); bool update_write_time(struct files_struct *fsp); /* The following definitions come from smbd/error.c */ |