diff options
author | Volker Lendecke <vl@samba.org> | 2010-04-11 22:38:33 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-04-11 22:59:47 +0200 |
commit | 2b1a50c2e537f690acd8eff1d0cf3102104144d3 (patch) | |
tree | 4810dd9d8c44ce32ad5ca47ec62da1bdb28c59f2 /source3/auth/auth_util.c | |
parent | 80708b75f815d455c7cc00fc4cccfb6af91e9d85 (diff) | |
download | samba-2b1a50c2e537f690acd8eff1d0cf3102104144d3.tar.gz samba-2b1a50c2e537f690acd8eff1d0cf3102104144d3.tar.xz samba-2b1a50c2e537f690acd8eff1d0cf3102104144d3.zip |
s3: Move sanitize_username to lib/util_str.c
Diffstat (limited to 'source3/auth/auth_util.c')
-rw-r--r-- | source3/auth/auth_util.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index f71ed90687..2cb02f4033 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -493,14 +493,6 @@ bool make_user_info_guest(struct auth_usersupplied_info **user_info) return NT_STATUS_IS_OK(nt_status) ? True : False; } -static char *sanitize_username(TALLOC_CTX *mem_ctx, const char *username) -{ - fstring tmp; - - alpha_strcpy(tmp, username, ". _-$", sizeof(tmp)); - return talloc_strdup(mem_ctx, tmp); -} - /*************************************************************************** Is the incoming username our own machine account ? If so, the connection is almost certainly from winbindd. |