Efsd updates ...

SVN revision: 4303
This commit is contained in:
cpk 2001-03-04 01:15:39 +00:00 committed by cpk
parent 0025ffc093
commit ac29391497
2 changed files with 11 additions and 3 deletions

View File

@ -35,7 +35,7 @@ _e_fs_fd_handle_a_la_cK(int fd)
printf("EEEEEEEEEEK efsd went wonky\n");
}
efsd_cleanup_event(&ev);
efsd_event_cleanup(&ev);
}
}
@ -86,7 +86,7 @@ _e_fs_fd_handle(int fd)
func = l->data;
func(&ev);
}
efsd_cleanup_event(&ev);
efsd_event_cleanup(&ev);
}
}
else

View File

@ -414,7 +414,15 @@ e_view_file_added(int id, char *file)
e_icon_show(icon);
e_view_add_icon(v, icon);
sprintf(buf, "%s/%s", v->dir, file);
efsd_stat(e_fs_get_connection(), buf);
if (efsd_ready(e_fs_get_connection()))
{
printf("Stating %s\n", buf);
efsd_stat(e_fs_get_connection(), buf);
}
else
{
printf("Efsd not ready.\n");
}
v->changed = 1;
}