summaryrefslogtreecommitdiff
path: root/source3/libgpo
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2006-09-28 23:13:15 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:14:53 -0500
commit7c1ca378ed1071f9086a59458ec0806fee6ca7eb (patch)
tree43972a6a15505aa818f312aa1a0adbedfcbc1c0e /source3/libgpo
parent031506eb51e2a58c8f4f91251ae8cb066f495df3 (diff)
downloadsamba-7c1ca378ed1071f9086a59458ec0806fee6ca7eb.tar.gz
samba-7c1ca378ed1071f9086a59458ec0806fee6ca7eb.tar.bz2
samba-7c1ca378ed1071f9086a59458ec0806fee6ca7eb.zip
r18984: Removing ads_gpo_get_sysvol_gpt_version() which was just doing stupid
things. Guenther (This used to be commit a597ef83c44368f81956bcd722e69b53bf205a8a)
Diffstat (limited to 'source3/libgpo')
-rw-r--r--source3/libgpo/gpo_parse.c91
1 files changed, 0 insertions, 91 deletions
diff --git a/source3/libgpo/gpo_parse.c b/source3/libgpo/gpo_parse.c
index 6be2ce2f79..54d86b7739 100644
--- a/source3/libgpo/gpo_parse.c
+++ b/source3/libgpo/gpo_parse.c
@@ -50,97 +50,6 @@ static BOOL do_parameter(const char *parameter, const char *value)
return True;
}
-NTSTATUS ads_gpo_get_sysvol_gpt_version(ADS_STRUCT *ads,
- TALLOC_CTX *mem_ctx,
- const char *filesyspath,
- uint32 *sysvol_version)
-{
- NTSTATUS status;
- const char *path;
- struct cli_state *cli;
- int fnum;
- fstring tok;
- static int io_bufsize = 64512;
- int read_size = io_bufsize;
- char *data = NULL;
- off_t start = 0;
- off_t nread = 0;
- int handle = 0;
- const char *local_file;
-
- *sysvol_version = 0;
-
- next_token(&filesyspath, tok, "\\", sizeof(tok));
- next_token(&filesyspath, tok, "\\", sizeof(tok));
-
- path = talloc_asprintf(mem_ctx, "\\%s\\gpt.ini", filesyspath);
- if (path == NULL) {
- return NT_STATUS_NO_MEMORY;
- }
-
- local_file = talloc_asprintf(mem_ctx, "%s/%s", lock_path("gpo_cache"), "gpt.ini");
- if (local_file == NULL) {
- return NT_STATUS_NO_MEMORY;
- }
-
- /* FIXME: walk down the dfs tree instead */
- status = cli_full_connection(&cli, global_myname(),
- ads->config.ldap_server_name,
- NULL, 0,
- "SYSVOL", "A:",
- ads->auth.user_name, NULL, ads->auth.password,
- CLI_FULL_CONNECTION_USE_KERBEROS,
- Undefined, NULL);
- if (!NT_STATUS_IS_OK(status)) {
- return status;
- }
-
- fnum = cli_open(cli, path, O_RDONLY, DENY_NONE);
- if (fnum == -1) {
- return NT_STATUS_NO_SUCH_FILE;
- }
-
-
- data = (char *)SMB_MALLOC(read_size);
- if (data == NULL) {
- return NT_STATUS_NO_MEMORY;
- }
-
- handle = sys_open(local_file, O_WRONLY|O_CREAT|O_TRUNC, 0644);
-
- if (handle == -1) {
- return NT_STATUS_NO_SUCH_FILE;
- }
-
- while (1) {
-
- int n = cli_read(cli, fnum, data, nread + start, read_size);
-
- if (n <= 0)
- break;
-
- if (write(handle, data, n) != n) {
- break;
- }
-
- nread += n;
- }
-
- cli_close(cli, fnum);
-
- if (!pm_process(local_file, do_section, do_parameter)) {
- return NT_STATUS_INVALID_PARAMETER;
- }
-
- *sysvol_version = version;
-
- SAFE_FREE(data);
-
- cli_shutdown(cli);
-
- return NT_STATUS_OK;
-}
-
/*
perfectly parseable with pm_process() :))