summaryrefslogtreecommitdiffstats
path: root/source3/libnet/libnet_samsync.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-27 00:46:38 +0200
committerGünther Deschner <gd@samba.org>2008-06-27 01:59:26 +0200
commit92df9ae39329a2c442c55d20ba9015fe23b071e3 (patch)
treef3a1a2633e9cd147f29b450ccf53f88c3c12844c /source3/libnet/libnet_samsync.h
parent8b52e2bc63904824022bcd9c51e52209a905b914 (diff)
downloadsamba-92df9ae39329a2c442c55d20ba9015fe23b071e3.tar.gz
samba-92df9ae39329a2c442c55d20ba9015fe23b071e3.tar.xz
samba-92df9ae39329a2c442c55d20ba9015fe23b071e3.zip
net_vampire: use bool for last_query information in samsync.
Guenther (This used to be commit fa1976e23a33bd3fab17c3f6ab5573ee1fdf9e31)
Diffstat (limited to 'source3/libnet/libnet_samsync.h')
-rw-r--r--source3/libnet/libnet_samsync.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/libnet/libnet_samsync.h b/source3/libnet/libnet_samsync.h
index 8559043f5ac..1f10d2c1c06 100644
--- a/source3/libnet/libnet_samsync.h
+++ b/source3/libnet/libnet_samsync.h
@@ -30,7 +30,7 @@ struct samsync_context;
typedef NTSTATUS (*samsync_delta_fn_t)(TALLOC_CTX *,
enum netr_SamDatabaseID,
struct netr_DELTA_ENUM_ARRAY *,
- NTSTATUS,
+ bool,
struct samsync_context *);
struct samsync_context {
@@ -54,20 +54,20 @@ struct samsync_context {
NTSTATUS fetch_sam_entries_ldif(TALLOC_CTX *mem_ctx,
enum netr_SamDatabaseID database_id,
struct netr_DELTA_ENUM_ARRAY *r,
- NTSTATUS result,
+ bool last_query,
struct samsync_context *ctx);
NTSTATUS fetch_sam_entries(TALLOC_CTX *mem_ctx,
enum netr_SamDatabaseID database_id,
struct netr_DELTA_ENUM_ARRAY *r,
- NTSTATUS status,
+ bool last_query,
struct samsync_context *ctx);
NTSTATUS display_sam_entries(TALLOC_CTX *mem_ctx,
enum netr_SamDatabaseID database_id,
struct netr_DELTA_ENUM_ARRAY *r,
- NTSTATUS status,
+ bool last_query,
struct samsync_context *ctx);
NTSTATUS fetch_sam_entries_keytab(TALLOC_CTX *mem_ctx,
enum netr_SamDatabaseID database_id,
struct netr_DELTA_ENUM_ARRAY *r,
- NTSTATUS status,
+ bool last_query,
struct samsync_context *ctx);