summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2013-09-04 08:22:43 +0200
committerJeremy Allison <jra@samba.org>2013-09-05 09:16:22 -0700
commit1173fed9165dffb79cfb119b6e80e379a6fd85ba (patch)
tree307be2938428f3fc6c8ad236d343a04f452ecfea /source3/utils
parent46131cb8023a883238b67e668be2afbc4adcf1f5 (diff)
downloadsamba-1173fed9165dffb79cfb119b6e80e379a6fd85ba.tar.gz
samba-1173fed9165dffb79cfb119b6e80e379a6fd85ba.tar.bz2
samba-1173fed9165dffb79cfb119b6e80e379a6fd85ba.zip
lib: Add "mem_ctx" to gencache_get_data_blob
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/net_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_cache.c b/source3/utils/net_cache.c
index afcb7a1874..4de3a6ce77 100644
--- a/source3/utils/net_cache.c
+++ b/source3/utils/net_cache.c
@@ -242,7 +242,7 @@ static int net_cache_get(struct net_context *c, int argc, const char **argv)
return -1;
}
- if (gencache_get_data_blob(keystr, &value, &timeout, NULL)) {
+ if (gencache_get_data_blob(keystr, NULL, &value, &timeout, NULL)) {
print_cache_entry(keystr, value, timeout, NULL);
data_blob_free(&value);
return 0;