summaryrefslogtreecommitdiff
path: root/examples/fuse
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 /examples/fuse
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 'examples/fuse')
-rw-r--r--examples/fuse/smb2mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/fuse/smb2mount.c b/examples/fuse/smb2mount.c
index 4ed985f53c4..67667bea6d0 100644
--- a/examples/fuse/smb2mount.c
+++ b/examples/fuse/smb2mount.c
@@ -143,7 +143,7 @@ int main(int argc, char *argv[])
*share = 0;
share++;
- cli = connect_one(cmdline_auth_info, server, port, share);
+ cli = connect_one(popt_get_cmdline_auth_info(), server, port, share);
if (cli == NULL) {
return -1;
}