diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-06 18:52:36 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-06 18:52:36 -0800 |
commit | 79c3aef7ea66b61a9df89ed40943586ca54c82ab (patch) | |
tree | f3c835a0362f39490b45190cd5b515d8f8899aff | |
parent | 761cd249821250f8e74418aa63d4befc5d129c82 (diff) | |
download | samba-79c3aef7ea66b61a9df89ed40943586ca54c82ab.tar.gz samba-79c3aef7ea66b61a9df89ed40943586ca54c82ab.tar.bz2 samba-79c3aef7ea66b61a9df89ed40943586ca54c82ab.zip |
Fix typos in auth change.
Jeremy.
(This used to be commit 440e9f5b51e42e5dc5ce3f8d10b9e43ca31e87ef)
-rw-r--r-- | source3/utils/smbtree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/smbtree.c b/source3/utils/smbtree.c index 91d3b1542b..cf880498c1 100644 --- a/source3/utils/smbtree.c +++ b/source3/utils/smbtree.c @@ -265,7 +265,7 @@ static bool print_tree(struct user_auth_info *user_info) int main(int argc,char *argv[]) { TALLOC_CTX *frame = talloc_stackframe(); - struct user_auth_info local_user_info; + struct user_auth_info local_auth_info; struct poptOption long_options[] = { POPT_AUTOHELP { "broadcast", 'b', POPT_ARG_VAL, &use_bcast, True, "Use broadcast instead of using the master browser" }, @@ -305,7 +305,7 @@ static bool print_tree(struct user_auth_info *user_info) /* Now do our stuff */ - if (!get_cmdline_auth_info_copy(&local_user_info)) { + if (!get_cmdline_auth_info_copy(&local_auth_info)) { return 1; } |