From 8080dbad78edbc26c8ece8ae7f1abc27f0d7afd4 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 30 Jan 2012 10:53:18 +0100 Subject: s3-lib: Fix util_cmdline which doesn't use popt. This creates its own header file for util_cmdline so it doesn't need to link against popt. This should fix linking on FreeBSD. --- source3/include/popt_common.h | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'source3/include/popt_common.h') diff --git a/source3/include/popt_common.h b/source3/include/popt_common.h index 10dd2f4ebe..2125ed6f83 100644 --- a/source3/include/popt_common.h +++ b/source3/include/popt_common.h @@ -21,6 +21,7 @@ #define _POPT_COMMON_H #include +#include "auth_info.h" /* Common popt structures */ extern struct poptOption popt_common_samba[]; @@ -47,19 +48,6 @@ extern const struct poptOption popt_common_dynconfig[]; #define POPT_COMMON_DEBUGLEVEL { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_debuglevel, 0, "Common samba debugging:", NULL }, #define POPT_COMMON_OPTION { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_option, 0, "Common samba commandline config:", NULL }, -struct user_auth_info { - char *username; - char *domain; - char *password; - bool got_pass; - bool use_kerberos; - int signing_state; - bool smb_encrypt; - bool use_machine_account; - bool fallback_after_kerberos; - bool use_ccache; -}; - void popt_common_set_auth_info(struct user_auth_info *auth_info); #endif /* _POPT_COMMON_H */ -- cgit