diff options
author | Jeremy Allison <jra@samba.org> | 2010-08-20 15:56:37 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-08-20 15:56:37 -0700 |
commit | 22a0168504846d618f70bb79175950f37f341769 (patch) | |
tree | 62785f8a75f679d3ec5f2abef36e9dea669cfdfd /source3/include | |
parent | 7e936e3122aed539b348bc5deea1732b65d94950 (diff) | |
download | samba-22a0168504846d618f70bb79175950f37f341769.tar.gz samba-22a0168504846d618f70bb79175950f37f341769.tar.bz2 samba-22a0168504846d618f70bb79175950f37f341769.zip |
Fix const warning.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 09c34ed3e7..a389966742 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -148,7 +148,7 @@ NTSTATUS make_server_info_guest(TALLOC_CTX *mem_ctx, NTSTATUS make_server_info_system(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info **server_info); bool copy_current_user(struct current_user *dst, struct current_user *src); -struct passwd *smb_getpwnam( TALLOC_CTX *mem_ctx, char *domuser, +struct passwd *smb_getpwnam( TALLOC_CTX *mem_ctx, const char *domuser, fstring save_username, bool create ); NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, const char *sent_nt_username, |