summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2002-11-15 22:55:15 +0000
committerRichard Sharpe <sharpe@samba.org>2002-11-15 22:55:15 +0000
commit0674d5a2b0f7ee621940c93b3b58960efd91a763 (patch)
tree2f72b81b7f80b798cecb09f8d945b19b6505ef8d /examples
parentb0772a1a0531896d5b343863434622d4d0ff437f (diff)
downloadsamba-0674d5a2b0f7ee621940c93b3b58960efd91a763.tar.gz
samba-0674d5a2b0f7ee621940c93b3b58960efd91a763.tar.xz
samba-0674d5a2b0f7ee621940c93b3b58960efd91a763.zip
One more small fix in tree.c
Diffstat (limited to 'examples')
-rw-r--r--examples/libsmbclient/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/libsmbclient/tree.c b/examples/libsmbclient/tree.c
index f357c0306d2..8dc9cc408b3 100644
--- a/examples/libsmbclient/tree.c
+++ b/examples/libsmbclient/tree.c
@@ -745,8 +745,6 @@ int main( int argc,
/* Now, get the items in smb:/// and add them to the tree */
- dirp = (struct smbc_dirent *)dirbuf;
-
while ((err = smbc_getdents(dh, (struct smbc_dirent *)dirbuf,
sizeof(dirbuf))) != 0) {
@@ -759,6 +757,8 @@ int main( int argc,
}
+ dirp = (struct smbc_dirent *)dirbuf;
+
fprintf(stdout, "Dir len: %u\n", err);
while (err > 0) { /* Extract each entry and make a sub-tree */