diff options
author | Jeremy Allison <jra@samba.org> | 2013-09-04 13:39:31 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-09-05 09:17:13 -0700 |
commit | 6b915bfd0f4194453c1b01158f2c2772b2a2df2f (patch) | |
tree | c1fcb0b1b0ff7abba4d2e27b7b853ce9b6926ed3 /source3/include | |
parent | 8a7246ac2c5b27cc29e6ca23c1e2e0f43e298eb5 (diff) | |
download | samba-6b915bfd0f4194453c1b01158f2c2772b2a2df2f.tar.gz samba-6b915bfd0f4194453c1b01158f2c2772b2a2df2f.tar.bz2 samba-6b915bfd0f4194453c1b01158f2c2772b2a2df2f.zip |
Add a talloc context to saf_fetch().
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 811fe4fd91..df65711d65 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -825,7 +825,7 @@ bool namecache_status_fetch(const char *keyname, bool saf_store( const char *domain, const char *servername ); bool saf_join_store( const char *domain, const char *servername ); bool saf_delete( const char *domain ); -char *saf_fetch( const char *domain ); +char *saf_fetch(TALLOC_CTX *mem_ctx, const char *domain ); struct tevent_req *node_status_query_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct nmb_name *name, |