summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--auth/auth_sam_reply.h8
-rw-r--r--auth/wscript_build1
2 files changed, 8 insertions, 1 deletions
diff --git a/auth/auth_sam_reply.h b/auth/auth_sam_reply.h
index c782c1c5cc2..5481eb26e87 100644
--- a/auth/auth_sam_reply.h
+++ b/auth/auth_sam_reply.h
@@ -61,6 +61,14 @@ NTSTATUS make_user_info_dc_netlogon_validation(TALLOC_CTX *mem_ctx,
NTSTATUS make_user_info_dc_pac(TALLOC_CTX *mem_ctx,
struct PAC_LOGON_INFO *pac_logon_info,
struct auth_user_info_dc **_user_info_dc);
+
+/* The following definitions come from auth/wbc_auth_util.c */
+
+struct wbcAuthUserInfo;
+
+struct netr_SamInfo3 *wbcAuthUserInfo_to_netr_SamInfo3(TALLOC_CTX *mem_ctx,
+ const struct wbcAuthUserInfo *info);
+
#undef _PRINTF_ATTRIBUTE
#define _PRINTF_ATTRIBUTE(a1, a2)
diff --git a/auth/wscript_build b/auth/wscript_build
index a61bc378af7..20261537fbd 100644
--- a/auth/wscript_build
+++ b/auth/wscript_build
@@ -3,7 +3,6 @@
bld.SAMBA_LIBRARY('auth_sam_reply',
source='auth_sam_reply.c wbc_auth_util.c',
deps='talloc samba-security samba-util',
- autoproto='auth_sam_reply.h',
private_library=True
)