diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-08-17 06:34:41 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-08-17 06:34:41 +0000 |
commit | c4ebde6b4b6a4e7a42ac2cc89216df1cad42a5f5 (patch) | |
tree | dfb5cf09acb95349baa4b3e4634cb9e60fb314bf /source3 | |
parent | 22404245b4f283197126479da23affd88f1ee8b3 (diff) | |
download | samba-c4ebde6b4b6a4e7a42ac2cc89216df1cad42a5f5.tar.gz samba-c4ebde6b4b6a4e7a42ac2cc89216df1cad42a5f5.tar.xz samba-c4ebde6b4b6a4e7a42ac2cc89216df1cad42a5f5.zip |
Add 'const'.
(This used to be commit 8955f3d63a9d9e5da76331996fba42dc105737da)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c index 6d922139e70..cfac7cf695f 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -184,7 +184,7 @@ has been given. vuid is biased by an offset. This allows us to tell random client vuid's (normally zero) from valid vuids. ****************************************************************************/ -int register_vuid(auth_serversupplied_info *server_info, char *smb_name) +int register_vuid(auth_serversupplied_info *server_info, const char *smb_name) { user_struct *vuser = NULL; uid_t uid; |