summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-05-22 16:16:31 +1000
committerAndrew Bartlett <abartlet@samba.org>2013-05-28 12:17:12 +1000
commitdc6b03ffa55968708576cb527f1b52a37d8e5317 (patch)
treed7b2c9f28a66cfb6dea383bf05de19cc2ffbf646 /auth
parent26d36befa8347eb093850cc8853fd9939555d458 (diff)
downloadsamba-dc6b03ffa55968708576cb527f1b52a37d8e5317.tar.gz
samba-dc6b03ffa55968708576cb527f1b52a37d8e5317.tar.bz2
samba-dc6b03ffa55968708576cb527f1b52a37d8e5317.zip
build: Remove unused credentials_samba3.c
This file was only used by the autoconf build system. Andrew Bartlett Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'auth')
-rw-r--r--auth/credentials/credentials_samba3.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/auth/credentials/credentials_samba3.c b/auth/credentials/credentials_samba3.c
deleted file mode 100644
index d742a0a498..0000000000
--- a/auth/credentials/credentials_samba3.c
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- Unix SMB/CIFS implementation.
-
- Handle user credentials (shim to allow samba3 to build)
-
- Copyright (C) Andrew Bartlett <abartlet@samba.org> 2011
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include "includes.h"
-#include "auth/credentials/credentials.h"
-
-/* These dummy functions are required only to allow the rest of the
- * code to compile when we are in the s3 autoconf build system */
-
-_PUBLIC_ void cli_credentials_invalidate_ccache(struct cli_credentials *cred,
- enum credentials_obtained obtained)
-{
- return;
-}
-
-_PUBLIC_ int cli_credentials_set_ccache(struct cli_credentials *cred,
- struct loadparm_context *lp_ctx,
- const char *name,
- enum credentials_obtained obtained,
- const char **error_string)
-{
- DEBUG(0, ("cli_credentials_set_ccache is unimplemented in the autoconf build\n"));
- return EINVAL;
-}
-
-_PUBLIC_ NTSTATUS cli_credentials_set_machine_account(struct cli_credentials *cred,
- struct loadparm_context *lp_ctx)
-{
- DEBUG(0, ("cli_credentials_set_machine_account is unimplemented in the autoconf build\n"));
- return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
-}