1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r18625: dfs_GetManagerVersion() returns a version number, not just an exist

flag.

Guenther
(This used to be commit 3e42ccc6096198458f66841f91234f670ceb59c4)
This commit is contained in:
Günther Deschner 2006-09-18 20:00:51 +00:00 committed by Gerald (Jerry) Carter
parent 18dcabaae0
commit afa7c10fe8
2 changed files with 12 additions and 7 deletions

View File

@ -11,8 +11,14 @@
{
/******************/
/* Function: 0x00 */
typedef [v1_enum] enum {
DFS_MANAGER_VERSION_NT4 = 0,
DFS_MANAGER_VERSION_W2K = 2,
DFS_MANAGER_VERSION_W2K3 = 4
} dfs_ManagerVersion;
void dfs_GetManagerVersion(
[out] uint32 *exist_flag
[out] dfs_ManagerVersion *version
);

View File

@ -1,6 +1,6 @@
/*
Unix SMB/CIFS implementation.
test suite for lsa dfs operations
test suite for rpc dfs operations
Copyright (C) Andrew Tridgell 2003
@ -24,14 +24,12 @@
#include "torture/rpc/rpc.h"
#include "librpc/gen_ndr/ndr_dfs_c.h"
static BOOL test_GetManagerVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
static BOOL test_GetManagerVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, enum dfs_ManagerVersion *version)
{
NTSTATUS status;
struct dfs_GetManagerVersion r;
uint32_t exist = 0;
r.out.exist_flag = ∃
r.out.version = version;
status = dcerpc_dfs_GetManagerVersion(p, mem_ctx, &r);
if (!NT_STATUS_IS_OK(status)) {
@ -172,6 +170,7 @@ BOOL torture_rpc_dfs(struct torture_context *torture)
struct dcerpc_pipe *p;
TALLOC_CTX *mem_ctx;
BOOL ret = True;
enum dfs_ManagerVersion version;
mem_ctx = talloc_init("torture_rpc_dfs");
@ -182,7 +181,7 @@ BOOL torture_rpc_dfs(struct torture_context *torture)
return False;
}
if (!test_GetManagerVersion(p, mem_ctx)) {
if (!test_GetManagerVersion(p, mem_ctx, &version)) {
ret = False;
}