summaryrefslogtreecommitdiff
path: root/source3/utils/smbtree.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2017-04-25 17:03:10 -0700
committerAndreas Schneider <asn@cryptomilk.org>2017-05-09 09:56:09 +0200
commitbec0cd2ee261f68f16c7860858e1128702806f5a (patch)
tree6e8d8edcc8191b37de5dcf3b2dc47f74b97077f3 /source3/utils/smbtree.c
parent1a8f410ece7c352e33c4e9f218b83e7b7c9b7100 (diff)
downloadsamba-bec0cd2ee261f68f16c7860858e1128702806f5a.tar.gz
s3: client tools. Remove direct access to struct user_auth_info *cmdline_auth_info.
Only access through utility functions. Remove all the local pointer aliases that were just being set to cmdline_auth_info in the client tools. Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/utils/smbtree.c')
-rw-r--r--source3/utils/smbtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbtree.c b/source3/utils/smbtree.c
index ba7b3182b64..f1890edcfad 100644
--- a/source3/utils/smbtree.c
+++ b/source3/utils/smbtree.c
@@ -317,7 +317,7 @@ int main(int argc, char *argv[])
/* Now do our stuff */
- if (!print_tree(cmdline_auth_info)) {
+ if (!print_tree(popt_get_cmdline_auth_info())) {
TALLOC_FREE(frame);
return 1;
}