diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-02 06:55:21 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-02 06:55:21 +0000 |
commit | 493c34b8f3de4b402d9496424e250faa4743e310 (patch) | |
tree | 7d95dda64abe6daefdd81b18d4620be9cc9b5e33 /source3/auth | |
parent | 50c1b611baf76d8f8b1e362076b66a62c15a4c50 (diff) | |
download | samba-493c34b8f3de4b402d9496424e250faa4743e310.tar.gz samba-493c34b8f3de4b402d9496424e250faa4743e310.tar.xz samba-493c34b8f3de4b402d9496424e250faa4743e310.zip |
Another touch of 'const'
(This used to be commit 3d812aacff98eec62c748cb89109a2e58806d92d)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 13dfdb59cc1..d9f3098e7c6 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -50,7 +50,7 @@ static int smb_create_user(const char *unix_user, const char *homedir) Delete a UNIX user on demand. ****************************************************************************/ -int smb_delete_user(char *unix_user) +int smb_delete_user(const char *unix_user) { pstring del_script; int ret; |