summaryrefslogtreecommitdiffstats
path: root/source/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-02 06:55:21 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-02 06:55:21 +0000
commit3d812aacff98eec62c748cb89109a2e58806d92d (patch)
treebf2ac281b27b277aed2626ba5118b0b3e0b99625 /source/auth
parentb354163834e0f2da7d3caacfe8d2ac6e2a6949e8 (diff)
downloadsamba-3d812aacff98eec62c748cb89109a2e58806d92d.tar.gz
samba-3d812aacff98eec62c748cb89109a2e58806d92d.tar.xz
samba-3d812aacff98eec62c748cb89109a2e58806d92d.zip
Another touch of 'const'
Diffstat (limited to 'source/auth')
-rw-r--r--source/auth/auth_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth_util.c b/source/auth/auth_util.c
index 13dfdb59cc1..d9f3098e7c6 100644
--- a/source/auth/auth_util.c
+++ b/source/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;