summaryrefslogtreecommitdiff
path: root/examples/libsmbclient/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/libsmbclient/tree.c')
-rw-r--r--examples/libsmbclient/tree.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/libsmbclient/tree.c b/examples/libsmbclient/tree.c
index 8dc9cc408b..da60236e60 100644
--- a/examples/libsmbclient/tree.c
+++ b/examples/libsmbclient/tree.c
@@ -51,8 +51,7 @@ void error_message(gchar *message) {
/* Ensure that the dialog box is destroyed when the user clicks ok. */
gtk_signal_connect_object (GTK_OBJECT (okay_button), "clicked",
- GTK_SIGNAL_FUNC (gtk_widget_destroy),
- GTK_OBJECT(dialog));
+ GTK_SIGNAL_FUNC (gtk_widget_destroy), dialog);
gtk_container_add (GTK_CONTAINER (GTK_DIALOG(dialog)->action_area),
okay_button);
@@ -745,6 +744,8 @@ 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) {
@@ -757,8 +758,6 @@ 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 */