diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-07-31 13:21:14 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-08-05 17:48:01 +1200 |
commit | b3cd44d50cff99fa77611679d68d2d57434fefa4 (patch) | |
tree | 805969dea5f1719a56b58e796cec7aaed100b636 | |
parent | 6ff6778bdc60f1cd4d52cba83bd47d3398fe5a20 (diff) | |
download | samba-b3cd44d50cff99fa77611679d68d2d57434fefa4.tar.gz samba-b3cd44d50cff99fa77611679d68d2d57434fefa4.tar.bz2 samba-b3cd44d50cff99fa77611679d68d2d57434fefa4.zip |
auth/credentials: add cli_credentials_shallow_copy()
This is useful for testing.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | auth/credentials/credentials.c | 15 | ||||
-rw-r--r-- | auth/credentials/credentials.h | 3 |
2 files changed, 18 insertions, 0 deletions
diff --git a/auth/credentials/credentials.c b/auth/credentials/credentials.c index e6a471064f..c1c6993032 100644 --- a/auth/credentials/credentials.c +++ b/auth/credentials/credentials.c @@ -125,6 +125,21 @@ _PUBLIC_ void *_cli_credentials_callback_data(struct cli_credentials *cred) return cred->priv_data; } +_PUBLIC_ struct cli_credentials *cli_credentials_shallow_copy(TALLOC_CTX *mem_ctx, + struct cli_credentials *src) +{ + struct cli_credentials *dst; + + dst = talloc(mem_ctx, struct cli_credentials); + if (dst == NULL) { + return NULL; + } + + *dst = *src; + + return dst; +} + /** * Create a new anonymous credential * @param mem_ctx TALLOC_CTX parent for credentials structure diff --git a/auth/credentials/credentials.h b/auth/credentials/credentials.h index 0f498ad2d0..1377bfa879 100644 --- a/auth/credentials/credentials.h +++ b/auth/credentials/credentials.h @@ -340,6 +340,9 @@ void *_cli_credentials_callback_data(struct cli_credentials *cred); #define cli_credentials_callback_data_void(_cred) \ _cli_credentials_callback_data(_cred) +struct cli_credentials *cli_credentials_shallow_copy(TALLOC_CTX *mem_ctx, + struct cli_credentials *src); + /** * Return attached NETLOGON credentials */ |