diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-24 17:07:24 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-24 20:32:17 +0100 |
commit | 21ec6a6cbd358f36aa9bf5974c5c53b8732cdceb (patch) | |
tree | cd5ea964d1f0ded20e8e7775003e8266602f1828 /source3/include | |
parent | a03a83ad26b2cfa571b18f423915312c29fd33c7 (diff) | |
download | samba-21ec6a6cbd358f36aa9bf5974c5c53b8732cdceb.tar.gz samba-21ec6a6cbd358f36aa9bf5974c5c53b8732cdceb.tar.bz2 samba-21ec6a6cbd358f36aa9bf5974c5c53b8732cdceb.zip |
s3: Add -C (--use-ccache) to popt_common_credentials
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/popt_common.h | 1 | ||||
-rw-r--r-- | source3/include/proto.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/popt_common.h b/source3/include/popt_common.h index 7237ca6754..a6e43d2659 100644 --- a/source3/include/popt_common.h +++ b/source3/include/popt_common.h @@ -55,6 +55,7 @@ struct user_auth_info { bool smb_encrypt; bool use_machine_account; bool fallback_after_kerberos; + bool use_ccache; }; #endif /* _POPT_COMMON_H */ diff --git a/source3/include/proto.h b/source3/include/proto.h index 01372c2587..f0ccc92c46 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1105,6 +1105,9 @@ const char *get_cmdline_auth_info_password(const struct user_auth_info *auth_inf bool set_cmdline_auth_info_signing_state(struct user_auth_info *auth_info, const char *arg); int get_cmdline_auth_info_signing_state(const struct user_auth_info *auth_info); +void set_cmdline_auth_info_use_ccache(struct user_auth_info *auth_info, + bool b); +bool get_cmdline_auth_info_use_ccache(const struct user_auth_info *auth_info); void set_cmdline_auth_info_use_kerberos(struct user_auth_info *auth_info, bool b); bool get_cmdline_auth_info_use_kerberos(const struct user_auth_info *auth_info); |